From 36c1039228b86e2e72367bbb46be41390eb57d84 Mon Sep 17 00:00:00 2001 From: Jakob Unterwurzacher Date: Sun, 10 Apr 2016 23:16:09 +0200 Subject: build.bash: bake the go-fuse commit hash into the binaries --- build.bash | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'build.bash') diff --git a/build.bash b/build.bash index 9d2290f..08ccb36 100755 --- a/build.bash +++ b/build.bash @@ -4,17 +4,20 @@ set -eu cd "$(dirname "$0")" +# gocryptfs version according to git GITVERSION=$(git describe --tags --dirty) +# go-fuse version according to git +GITVERSIONFUSE=$(git -C $GOPATH/src/github.com/hanwen/go-fuse rev-parse --short HEAD) # go version go1.5.1 linux/amd64 V=$(go version | cut -d" " -f3 | cut -c3-5) if [ $V == "1.3" -o $V == "1.4" ] then - go build -ldflags="-X main.GitVersion $GITVERSION" + go build -ldflags="-X main.GitVersion $GITVERSION -X main.GitVersionFuse $GITVERSIONFUSE" else # Go 1.5 wants an "=" here - go build -ldflags="-X main.GitVersion=$GITVERSION" + go build -ldflags="-X main.GitVersion=$GITVERSION -X main.GitVersionFuse=$GITVERSIONFUSE" fi ./gocryptfs -version -- cgit v1.2.3