summaryrefslogtreecommitdiff
path: root/build.bash
diff options
context:
space:
mode:
authorJakob Unterwurzacher2015-12-20 17:44:11 +0100
committerJakob Unterwurzacher2015-12-20 17:44:11 +0100
commit57b32a0b8b11757776dcfe57d594b2b5829f10f2 (patch)
tree443f52d5926eb79ceb8321941ab13485d31d5d45 /build.bash
parent38f7dc1a17ee62b2d2bdc407b4deeee8b385dd04 (diff)
Make build.bash work when called from outside the gocryptfs directory
Diffstat (limited to 'build.bash')
-rwxr-xr-xbuild.bash4
1 files changed, 3 insertions, 1 deletions
diff --git a/build.bash b/build.bash
index 9a534d4..d2224eb 100755
--- a/build.bash
+++ b/build.bash
@@ -2,6 +2,8 @@
set -eu
+cd "$(dirname "$0")"
+
GITVERSION=$(git describe --tags --dirty)
# go version go1.5.1 linux/amd64
@@ -11,7 +13,7 @@ if [ $V == "1.3" -o $V == "1.4" ]
then
go build -ldflags="-X main.GitVersion $GITVERSION"
else
- # Go 1.5 wants an "=" here
+ # Go 1.5 wants an "=" here
go build -ldflags="-X main.GitVersion=$GITVERSION"
fi