Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ require (
github.com/charmbracelet/huh v1.0.0
github.com/charmbracelet/lipgloss v1.1.0
github.com/google/uuid v1.6.0
github.com/open-cli-collective/cli-common v0.3.3-0.20260616043623-eb0e0b7e5097
github.com/open-cli-collective/cli-common v0.4.0
github.com/spf13/cobra v1.10.2
golang.org/x/sys v0.46.0
gopkg.in/yaml.v3 v3.0.1
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -111,8 +111,8 @@ github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e h1:fD57ERR4JtEqsWb
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e/go.mod h1:zD1mROLANZcx1PVRCS0qkT7pwLkGfwJo4zjcN/Tysno=
github.com/noamcohen97/touchid-go v0.3.0 h1:fcXxVCizysD7KHRR6hrURt3nyNIs5JBGSbOIidD/3wo=
github.com/noamcohen97/touchid-go v0.3.0/go.mod h1:X9MRNIBGEmPqwpDm1G3fQOAQX7fwBlhzUbnkDTxuta0=
github.com/open-cli-collective/cli-common v0.3.3-0.20260616043623-eb0e0b7e5097 h1:/E313QdIks8CGA6IPCecQoflhBjGnBgonXIDsCj3S0I=
github.com/open-cli-collective/cli-common v0.3.3-0.20260616043623-eb0e0b7e5097/go.mod h1:3AzjCT0V8xgslHlGi1+rUkcV+Vf5wONGwISQkufLZLQ=
github.com/open-cli-collective/cli-common v0.4.0 h1:YkffqDW2OmFMWPqrT7m/yC3VoUKxGRAp26i2QZMYIWo=
github.com/open-cli-collective/cli-common v0.4.0/go.mod h1:3AzjCT0V8xgslHlGi1+rUkcV+Vf5wONGwISQkufLZLQ=
github.com/opentracing/opentracing-go v1.2.0 h1:uEJPy/1a5RIPAJ0Ov+OIO8OxWu77jEv+1B0VhjKrZUs=
github.com/opentracing/opentracing-go v1.2.0/go.mod h1:GxEUsuufX4nBwe+T+Wl9TAgYrxe9dPLANfrWvHYVTgc=
github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4=
Expand Down
6 changes: 3 additions & 3 deletions internal/cmd/configcmd/configcmd.go
Original file line number Diff line number Diff line change
Expand Up @@ -519,10 +519,10 @@ func Register(rootCmd *cobra.Command, opts *root.Options) {
return cmderr.Credential(err)
}
result := view.ConfigClear{
Backend: string(backend),
BackendSource: string(source),
Backend: string(backend),
BackendSource: string(source),
ActiveSecretsProfile: resolvedSecretsProfileViewPtr(resolvedSecretsProfile),
DryRun: clearDryRun,
DryRun: clearDryRun,
}
for _, profile := range profiles {
keys, err := clearCredentialBundle(store, profile.Profile, clearDryRun)
Expand Down
Loading
Loading