mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
V 0.1.9
This commit is contained in:
parent
fd610b97d2
commit
08c8b4ba22
2
Makefile
2
Makefile
@ -10,7 +10,7 @@ v.c:
|
|||||||
curl -Os https://raw.githubusercontent.com/vlang/vc/master/v.c
|
curl -Os https://raw.githubusercontent.com/vlang/vc/master/v.c
|
||||||
|
|
||||||
test: v
|
test: v
|
||||||
./v -prod -o vprod . # Test prod build
|
./v -prod -o vprod compiler # Test prod build
|
||||||
echo "Running V tests..."
|
echo "Running V tests..."
|
||||||
find . -name '*_test.v' -print0 | xargs -0 -n1 ./v
|
find . -name '*_test.v' -print0 | xargs -0 -n1 ./v
|
||||||
echo "Building V examples..."
|
echo "Building V examples..."
|
||||||
|
@ -8,7 +8,7 @@ import os
|
|||||||
import time
|
import time
|
||||||
|
|
||||||
const (
|
const (
|
||||||
Version = '0.1.8'
|
Version = '0.1.9'
|
||||||
)
|
)
|
||||||
|
|
||||||
// TODO no caps
|
// TODO no caps
|
||||||
@ -793,7 +793,7 @@ fn new_v(args[]string) *V {
|
|||||||
println('Setting VROOT to "$lang_dir".')
|
println('Setting VROOT to "$lang_dir".')
|
||||||
os.write_file(TmpPath + '/VROOT', lang_dir)
|
os.write_file(TmpPath + '/VROOT', lang_dir)
|
||||||
} else {
|
} else {
|
||||||
println('V repo not found. Go to https://vlang.io to download V.zip or')
|
println('V repo not found. Go to https://vlang.io to download V.zip ')
|
||||||
println('or install V from source.')
|
println('or install V from source.')
|
||||||
exit(1)
|
exit(1)
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user