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

print "running [exe name]" only in verbose mode

This commit is contained in:
Alexander Medvednikov 2019-07-27 16:42:17 +02:00 committed by GitHub
parent 720648703b
commit b0913dc5a8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -570,7 +570,7 @@ void reload_so() {
} }
v.cc() v.cc()
if v.pref.is_test || v.pref.is_run { if v.pref.is_test || v.pref.is_run {
if true || v.pref.is_verbose { if v.pref.is_verbose {
println('============ running $v.out_name ============') println('============ running $v.out_name ============')
} }
mut cmd := if v.out_name.starts_with('/') { mut cmd := if v.out_name.starts_with('/') {