mirror of
https://github.com/harness/drone.git
synced 2025-05-06 22:24:09 +08:00
Correct arg length checks
This commit is contained in:
parent
fe750c751a
commit
a4076e00ff
@ -42,7 +42,7 @@ var orgSecretAddCmd = cli.Command{
|
||||
}
|
||||
|
||||
func orgSecretAdd(c *cli.Context) error {
|
||||
if len(c.Args().Tail()) != 3 {
|
||||
if len(c.Args()) != 3 {
|
||||
cli.ShowSubcommandHelp(c)
|
||||
return nil
|
||||
}
|
||||
|
@ -35,7 +35,7 @@ var orgSecretListCmd = cli.Command{
|
||||
}
|
||||
|
||||
func orgSecretList(c *cli.Context) error {
|
||||
if len(c.Args().Tail()) != 1 {
|
||||
if len(c.Args()) != 1 {
|
||||
cli.ShowSubcommandHelp(c)
|
||||
return nil
|
||||
}
|
||||
|
@ -17,7 +17,7 @@ var orgSecretRemoveCmd = cli.Command{
|
||||
}
|
||||
|
||||
func orgSecretRemove(c *cli.Context) error {
|
||||
if len(c.Args().Tail()) != 2 {
|
||||
if len(c.Args()) != 2 {
|
||||
cli.ShowSubcommandHelp(c)
|
||||
return nil
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user