From 0a6840b6a6d830345f7a6902e0b5b92ec91403ab Mon Sep 17 00:00:00 2001 From: Alexander Medvednikov Date: Tue, 5 Nov 2019 01:32:21 +0300 Subject: [PATCH] improve a minor info message --- vlib/compiler/main.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vlib/compiler/main.v b/vlib/compiler/main.v index 9bb8dbedf8..550266bb50 100644 --- a/vlib/compiler/main.v +++ b/vlib/compiler/main.v @@ -522,7 +522,7 @@ pub fn (v &V) v_files_from_dir(dir string) []string { if !os.file_exists(dir) { if dir == 'compiler' && os.dir_exists('vlib') { println('looks like you are trying to build V with an old command') - println('use `v v.v` instead of `v -o v compiler`') + println('use `v -o v v.v` instead of `v -o v compiler`') } verror("$dir doesn't exist") } else if !os.dir_exists(dir) {