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

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 (