diff --git a/Makefile b/Makefile index a05c9b95c3..9186c0cba6 100644 --- a/Makefile +++ b/Makefile @@ -10,7 +10,7 @@ v.c: curl -Os https://raw.githubusercontent.com/vlang/vc/master/v.c test: v - ./v -prod -o vprod . # Test prod build + ./v -prod -o vprod compiler # Test prod build echo "Running V tests..." find . -name '*_test.v' -print0 | xargs -0 -n1 ./v echo "Building V examples..." diff --git a/compiler/main.v b/compiler/main.v index 869cf09c1b..ce3188b672 100644 --- a/compiler/main.v +++ b/compiler/main.v @@ -8,7 +8,7 @@ import os import time const ( - Version = '0.1.8' + Version = '0.1.9' ) // TODO no caps @@ -793,7 +793,7 @@ fn new_v(args[]string) *V { println('Setting VROOT to "$lang_dir".') os.write_file(TmpPath + '/VROOT', lang_dir) } 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.') exit(1) }