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

CI: fix building v

This commit is contained in:
joe-conigliaro
2019-10-14 15:08:02 +11:00
committed by Alexander Medvednikov
parent e2bca190a9
commit de10a529b0
4 changed files with 8 additions and 11 deletions

View File

@ -22,7 +22,7 @@ fn (v mut V) cc() {
dir := os.dir(vexe)
if !os.file_exists(vjs_path) {
println('V.js compiler not found, building...')
ret := os.system('$vexe -o $vjs_path -os js $dir/compiler')
ret := os.system('$vexe -o $vjs_path -os js $dir/v.v')
if ret == 0 {
println('Done.')
} else {