Fix help output
This commit is contained in:
parent
1634321bd2
commit
93d2163ce9
|
@ -38,4 +38,7 @@ proc parseArgs*(): Option[Args] =
|
|||
if command.len > 0:
|
||||
args.cmd = some(command)
|
||||
|
||||
return some(args)
|
||||
if args.name.isSome or args.cmd.isSome or args.profile.isSome:
|
||||
return some(args)
|
||||
else:
|
||||
return none(Args)
|
||||
|
|
Loading…
Reference in New Issue