From b0913dc5a86afb583185baf7949187d7f975734a Mon Sep 17 00:00:00 2001 From: Alexander Medvednikov Date: Sat, 27 Jul 2019 16:42:17 +0200 Subject: [PATCH] print "running [exe name]" only in verbose mode --- compiler/main.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/main.v b/compiler/main.v index 29886e45c0..4c240a5e36 100644 --- a/compiler/main.v +++ b/compiler/main.v @@ -570,7 +570,7 @@ void reload_so() { } v.cc() 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 ============') } mut cmd := if v.out_name.starts_with('/') {