mirror of
https://github.com/davidallendj/magellan.git
synced 2025-12-20 11:37:01 -07:00
fix: added username/password to collect params
This commit is contained in:
parent
b7cf7233a8
commit
6c5e958863
2 changed files with 4 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
}
|
||||
},
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue