mirror of
https://github.com/davidallendj/magellan.git
synced 2025-12-20 03:27:03 -07:00
fix: changed number of minimum args for secrets list
This commit is contained in:
parent
7990ec097d
commit
17350ab99b
1 changed files with 1 additions and 1 deletions
|
|
@ -199,7 +199,7 @@ var secretsListCmd = &cobra.Command{
|
||||||
|
|
||||||
var secretsRemoveCmd = &cobra.Command{
|
var secretsRemoveCmd = &cobra.Command{
|
||||||
Use: "remove secretIDs...",
|
Use: "remove secretIDs...",
|
||||||
Args: cobra.MinimumNArgs(2),
|
Args: cobra.MinimumNArgs(1),
|
||||||
Short: "Remove secrets by IDs from secret store.",
|
Short: "Remove secrets by IDs from secret store.",
|
||||||
Run: func(cmd *cobra.Command, args []string) {
|
Run: func(cmd *cobra.Command, args []string) {
|
||||||
for _, secretID := range args {
|
for _, secretID := range args {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue