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.
--verbose
-v
1 parent 14e53f9 commit 7c5d439Copy full SHA for 7c5d439
1 file changed
cmd/tools/vpm/settings.v
@@ -26,7 +26,7 @@ fn init_settings() VpmSettings {
26
return VpmSettings{
27
is_help: '-h' in opts || '--help' in opts || 'help' in cmds
28
is_once: '--once' in opts
29
- is_verbose: '-v' in opts
+ is_verbose: '-v' in opts || '--verbose' in opts
30
is_force: '-f' in opts || '--force' in opts
31
vcs: if '--hg' in opts { 'hg' } else { 'git' }
32
server_urls: cmdline.options(args, '--server-urls')
0 commit comments