mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
cli: show help for empty root command (#6636)
This commit is contained in:
parent
3c2202572b
commit
dea8662d6b
@ -185,6 +185,12 @@ fn (mut cmd Command) parse_commands() {
|
||||
}
|
||||
}
|
||||
}
|
||||
if cmd.is_root() && int(cmd.execute) == 0 {
|
||||
if !cmd.disable_help {
|
||||
cmd.execute_help()
|
||||
return
|
||||
}
|
||||
}
|
||||
// if no further command was found, execute current command
|
||||
if cmd.required_args > 0 {
|
||||
if cmd.required_args > cmd.args.len {
|
||||
|
@ -1,7 +1,11 @@
|
||||
import os
|
||||
import cli {Command}
|
||||
|
||||
fn main() {
|
||||
mut cmd := Command {}
|
||||
cmd.parse(os.args)
|
||||
mut cmd := Command {
|
||||
name: 'cmd'
|
||||
}
|
||||
cmd.add_command({
|
||||
name: 'foo'
|
||||
})
|
||||
cmd.parse(['', 'cmd', 'foo'])
|
||||
}
|
||||
|
7
vlib/v/tests/inout/cli_root_default_help.out
Normal file
7
vlib/v/tests/inout/cli_root_default_help.out
Normal file
@ -0,0 +1,7 @@
|
||||
Usage: [flags] [commands]
|
||||
|
||||
Flags:
|
||||
-help Prints help information.
|
||||
|
||||
Commands:
|
||||
help Prints help information.
|
7
vlib/v/tests/inout/cli_root_default_help.vv
Normal file
7
vlib/v/tests/inout/cli_root_default_help.vv
Normal file
@ -0,0 +1,7 @@
|
||||
import cli {Command}
|
||||
import os
|
||||
|
||||
fn main() {
|
||||
mut cmd := Command {}
|
||||
cmd.parse(os.args)
|
||||
}
|
Loading…
Reference in New Issue
Block a user