We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ba7a018 + 60e1fd2 commit e8dce9eCopy full SHA for e8dce9e
cmd/loop/quote.go
@@ -36,9 +36,8 @@ var quoteCommand = cli.Command{
36
}
37
38
func quote(ctx *cli.Context) error {
39
- // Show command help if the incorrect number arguments and/or flags were
40
- // provided.
41
- if ctx.NArg() != 1 || ctx.NumFlags() > 1 {
+ // Show command help if the incorrect number arguments was provided.
+ if ctx.NArg() != 1 {
42
return cli.ShowCommandHelp(ctx, "quote")
43
44
0 commit comments