Skip to content

Commit

Permalink
tools: support --verbose in vpm, as an alternative to -v, to enab…
Browse files Browse the repository at this point in the history
…le verbose output (#19848)
  • Loading branch information
ttytm committed Nov 12, 2023
1 parent 14e53f9 commit 7c5d439
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/tools/vpm/settings.v
Expand Up @@ -26,7 +26,7 @@ fn init_settings() VpmSettings {
return VpmSettings{
is_help: '-h' in opts || '--help' in opts || 'help' in cmds
is_once: '--once' in opts
is_verbose: '-v' in opts
is_verbose: '-v' in opts || '--verbose' in opts
is_force: '-f' in opts || '--force' in opts
vcs: if '--hg' in opts { 'hg' } else { 'git' }
server_urls: cmdline.options(args, '--server-urls')
Expand Down

0 comments on commit 7c5d439

Please sign in to comment.