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

fix v_command()

This commit is contained in:
Alexander Medvednikov
2019-12-15 05:44:34 +03:00
parent 12ebed0589
commit 68357876ca
2 changed files with 4 additions and 10 deletions

View File

@ -570,6 +570,7 @@ pub fn final_target_out_name(out_name string) string {
}
pub fn (v V) run_compiled_executable_and_exit() {
println('RUNNING')
args := env_vflags_and_os_args()
if v.pref.is_verbose {
println('============ running $v.out_name ============')
@ -585,6 +586,7 @@ pub fn (v V) run_compiled_executable_and_exit() {
break
}
}
println(args_after)
cmd += args_after
if v.pref.is_test {