Correct arg length checks

This commit is contained in:
Thomas Boerger 2016-08-15 00:02:11 +02:00
parent fe750c751a
commit a4076e00ff
No known key found for this signature in database
GPG key ID: 5A388F55283960B6
3 changed files with 3 additions and 3 deletions

View file

@ -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
}

View file

@ -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
}

View file

@ -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
}