Skip to content

Commit

Permalink
V 0.1.9
Browse files Browse the repository at this point in the history
  • Loading branch information
medvednikov committed Jun 29, 2019
1 parent fd610b9 commit 08c8b4b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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..."
Expand Down
4 changes: 2 additions & 2 deletions compiler/main.v
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import os
import time

const (
Version = '0.1.8'
Version = '0.1.9'
)

// TODO no caps
Expand Down Expand Up @@ -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)
}
Expand Down

0 comments on commit 08c8b4b

Please sign in to comment.