From 56e1dac03a6551324298317eda28fcf1dc7e161f Mon Sep 17 00:00:00 2001 From: Alexander Medvednikov Date: Sat, 2 Nov 2019 14:52:12 +0300 Subject: [PATCH] Revert "vtools: add an info message". This broke repl tests. This reverts commit 3b3f0eb50731382712800cd4dd6e7202342b5763. --- vlib/compiler/vtools.v | 1 - 1 file changed, 1 deletion(-) diff --git a/vlib/compiler/vtools.v b/vlib/compiler/vtools.v index 4c43677cdb..117b715242 100644 --- a/vlib/compiler/vtools.v +++ b/vlib/compiler/vtools.v @@ -33,7 +33,6 @@ pub fn launch_tool(tname string){ if tool_should_be_recompiled { compilation_command := '$vexe $tool_source' //println('Compiling $tname with: "$compilation_command"') - println('Building $tname for the first time...') tool_compilation := os.exec(compilation_command) or { panic(err) } if tool_compilation.exit_code != 0 { panic('V tool "$tool_source" could not be compiled.')