1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

improve a minor info message

This commit is contained in:
Alexander Medvednikov 2019-11-05 01:32:21 +03:00
parent ee4db9f96d
commit 0a6840b6a6

View File

@ -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) {