From f01f599d74c32a380867707022fa60f90040f6b6 Mon Sep 17 00:00:00 2001 From: Jakob Unterwurzacher Date: Sat, 9 Jan 2016 14:20:04 +0100 Subject: [PATCH] Make test.bash work when called from outside the gocryptfs directory Also, get rid of useless intermediate build step --- test.bash | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test.bash b/test.bash index 68cc74f..bd397fd 100755 --- a/test.bash +++ b/test.bash @@ -2,7 +2,8 @@ set -eu -go build ./cryptfs +cd "$(dirname "$0")" + go test ./cryptfs $* source build.bash