1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

vpm: use only -v for verbose output

This commit is contained in:
Lukas Neubert
2020-06-07 14:20:56 +02:00
committed by GitHub
parent 70c18fc7b2
commit eec5cf1eb1
7 changed files with 14 additions and 15 deletions

View File

@ -443,7 +443,7 @@ fn init_settings() {
s = settings
}
s.is_help = '-h' in os.args || '--help' in os.args || 'help' in os.args
s.is_verbose = '-verbose' in os.args || '--verbose' in os.args || '-v' in os.args
s.is_verbose = '-v' in os.args
s.server_urls = cmdline.options(os.args, '-server-url')
s.vmodules_path = os.home_dir() + '.vmodules'
}