summaryrefslogtreecommitdiff
path: root/build.bash
diff options
context:
space:
mode:
authorJakob Unterwurzacher2017-02-19 20:14:46 +0100
committerJakob Unterwurzacher2017-02-20 21:26:18 +0100
commit166c62fd2137eb45fb8a5664f79cf8ff8f27d6e4 (patch)
tree85e77cc6b16a32bdb73375ddc2cf63785c2e2cc7 /build.bash
parent1139c27c36de723391b6a5935159feaef49be299 (diff)
build.bash: use $(go env GOPATH)
Diffstat (limited to 'build.bash')
-rwxr-xr-xbuild.bash9
1 files changed, 2 insertions, 7 deletions
diff --git a/build.bash b/build.bash
index 0dcc272..e492f17 100755
--- a/build.bash
+++ b/build.bash
@@ -4,13 +4,8 @@ set -eu
cd "$(dirname "$0")"
-# Starting with Go v1.8, GOPATH may be unset. $HOME/go is used instead.
-if [[ -z ${GOPATH:-} ]] ; then
- GOPATH1=$HOME/go
-else
- # GOPATH may contain multiple paths separated by ":"
- GOPATH1=$(echo $GOPATH | cut -f1 -d:)
-fi
+# GOPATH may contain multiple paths separated by ":"
+GOPATH1=$(go env GOPATH | cut -f1 -d:)
# gocryptfs version according to git
GITVERSION=$(git describe --tags --dirty)