print "running [exe name]" only in verbose mode
parent
720648703b
commit
b0913dc5a8
|
@ -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('/') {
|
||||||
|
|
Loading…
Reference in New Issue