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

main.v: update help

This commit is contained in:
Alexander Medvednikov
2019-07-21 13:51:52 +02:00
parent 40c31f701f
commit e2364f6285
2 changed files with 3 additions and 1 deletions

11
test.sh
View File

@ -1,11 +0,0 @@
#!/bin/zsh
for f in **/*_test.v ; do
echo "Testing $f..."
v $f || echo "fail"
done
for f in examples/*.v ; do
echo "Building $f..."
v $f || echo "fail"
done