We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7ff78e8 commit aab6b01Copy full SHA for aab6b01
scripts/build.sh
@@ -1,5 +1,7 @@
1
#!/bin/bash
2
3
+set -euxo pipefail
4
+
5
BUILD_TIME=$(date -u +%m-%d-%Y.%H-%M-%S.UTC)
6
VERSION=$(cat version/CURRENT_VERSION | tr -d '\n')
7
PKG_NAME=github.com/contiv/netplugin/version
@@ -19,7 +21,7 @@ GIT_COMMIT=$(./scripts/getGitCommit.sh)
19
21
20
22
echo $BUILD_VERSION >$VERSION_FILE
23
-GOGC=1500 go install \
24
+GOGC=1500 go install -v \
25
-ldflags "-X $PKG_NAME.version=$BUILD_VERSION \
26
-X $PKG_NAME.buildTime=$BUILD_TIME \
27
-X $PKG_NAME.gitCommit=$GIT_COMMIT \
0 commit comments