Update test.bash to call build.bash

This makes sure the version number is baked into the binary that is
built
This commit is contained in:
Jakob Unterwurzacher 2015-11-01 15:22:53 +01:00
parent c272e3042f
commit e7c25b482e
1 changed files with 4 additions and 6 deletions

View File

@ -2,10 +2,8 @@
set -eux
for i in ./cryptfs .
do
go build $i
go test $i
done
go build ./cryptfs
go test ./cryptfs
source build.bash
go test