Skip to content

Commit 7c5d439

Browse files
authored
tools: support --verbose in vpm, as an alternative to -v, to enable verbose output (#19848)
1 parent 14e53f9 commit 7c5d439

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

cmd/tools/vpm/settings.v

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ fn init_settings() VpmSettings {
2626
return VpmSettings{
2727
is_help: '-h' in opts || '--help' in opts || 'help' in cmds
2828
is_once: '--once' in opts
29-
is_verbose: '-v' in opts
29+
is_verbose: '-v' in opts || '--verbose' in opts
3030
is_force: '-f' in opts || '--force' in opts
3131
vcs: if '--hg' in opts { 'hg' } else { 'git' }
3232
server_urls: cmdline.options(args, '--server-urls')

0 commit comments

Comments
 (0)