blob: d2224eb73bd3cccf274692de2bbdc198abed17c4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#!/bin/bash
set -eu
cd "$(dirname "$0")"
GITVERSION=$(git describe --tags --dirty)
# 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"
else
# Go 1.5 wants an "=" here
go build -ldflags="-X main.GitVersion=$GITVERSION"
fi
./gocryptfs -version
|