diff --git a/cmd/collect.go b/cmd/collect.go index a22a29e..6af6bf5 100644 --- a/cmd/collect.go +++ b/cmd/collect.go @@ -72,6 +72,8 @@ var CollectCmd = &cobra.Command{ ForceUpdate: forceUpdate, AccessToken: accessToken, SecretsFile: secretsFile, + Username: username, + Password: password, } // show all of the 'collect' parameters being set from CLI if verbose diff --git a/cmd/secrets.go b/cmd/secrets.go index fb61168..3766de9 100644 --- a/cmd/secrets.go +++ b/cmd/secrets.go @@ -219,8 +219,8 @@ var secretsListCmd = &cobra.Command{ os.Exit(1) } - for key, value := range secrets { - fmt.Printf("%s: %s\n", key, value) + for key := range secrets { + fmt.Printf("%s\n", key) } }, }