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

v2: array_test fixes

This commit is contained in:
Alexander Medvednikov
2020-03-25 14:24:48 +01:00
parent aa0643f785
commit 456750ac19
4 changed files with 14 additions and 5 deletions

View File

@@ -13,10 +13,10 @@ fn main() {
mut cmd := '$vexe -o v2 cmd/v'
if os.args.len >= 3 && os.args[2] == '-prod' {
cmd = '$vexe -o v2 -prod cmd/v'
println('V Self Compiling (-prod mode)...')
println('V self compiling (-prod mode)...')
}
else {
println('V Self Compiling...')
println('V self compiling...')
}
s2 := os.exec(cmd) or { panic(err) }