Merge pull request #1755 from AkihiroSuda/fix-ctr-snapshot-args

ctr: fix args
This commit is contained in:
Stephen Day 2017-11-14 17:55:14 -08:00 committed by GitHub
commit 571c002ef6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -156,7 +156,7 @@ var prepareCommand = cli.Command{
},
},
Action: func(context *cli.Context) error {
if context.NArg() != 2 {
if narg := context.NArg(); narg < 1 || narg > 2 {
return cli.ShowSubcommandHelp(context)
}
var (
@ -195,7 +195,7 @@ var viewCommand = cli.Command{
},
},
Action: func(context *cli.Context) error {
if context.NArg() != 2 {
if narg := context.NArg(); narg < 1 || narg > 2 {
return cli.ShowSubcommandHelp(context)
}
var (