From e7c25b482e14941cdfec61329f6a752f1666a2f2 Mon Sep 17 00:00:00 2001 From: Jakob Unterwurzacher Date: Sun, 1 Nov 2015 15:22:53 +0100 Subject: [PATCH] Update test.bash to call build.bash This makes sure the version number is baked into the binary that is built --- test.bash | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/test.bash b/test.bash index 976bb02..4cfe5a8 100755 --- a/test.bash +++ b/test.bash @@ -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