Merge pull request #1764 from tboerger/feature/org-fixes

Correct arg length checks
This commit is contained in:
Brad Rydzewski 2016-08-16 00:05:04 -07:00 committed by GitHub
commit a81a13d73d
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
}