From 3b3f0eb50731382712800cd4dd6e7202342b5763 Mon Sep 17 00:00:00 2001 From: Alexander Medvednikov Date: Sat, 2 Nov 2019 13:27:09 +0300 Subject: [PATCH] vtools: add an info message --- vlib/compiler/vtools.v | 1 + 1 file changed, 1 insertion(+) diff --git a/vlib/compiler/vtools.v b/vlib/compiler/vtools.v index 117b715242..4c43677cdb 100644 --- a/vlib/compiler/vtools.v +++ b/vlib/compiler/vtools.v @@ -33,6 +33,7 @@ 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.')