mirror of
https://github.com/vlang/v.git
synced 2025-09-13 14:32:26 +03:00
pref: support VNORUN=1, to enable running of tests, vsh files etc (i.e. just compile them, for debugging later)
This commit is contained in:
parent
1aad481c29
commit
57a33c313b
1 changed files with 3 additions and 0 deletions
|
@ -317,6 +317,9 @@ pub fn parse_args_and_show_errors(known_external_commands []string, args []strin
|
|||
if os.getenv('VQUIET') != '' {
|
||||
res.is_quiet = true
|
||||
}
|
||||
if os.getenv('VNORUN') != '' {
|
||||
res.skip_running = true
|
||||
}
|
||||
mut command := ''
|
||||
mut command_pos := -1
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue