Skip to content

Commit aab6b01

Browse files
committed
Adding debugs in netplugin/scripts/build.sh
Signed-off-by: Vikram Hosakote <[email protected]>
1 parent 7ff78e8 commit aab6b01

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

scripts/build.sh

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
#!/bin/bash
22

3+
set -euxo pipefail
4+
35
BUILD_TIME=$(date -u +%m-%d-%Y.%H-%M-%S.UTC)
46
VERSION=$(cat version/CURRENT_VERSION | tr -d '\n')
57
PKG_NAME=github.com/contiv/netplugin/version
@@ -19,7 +21,7 @@ GIT_COMMIT=$(./scripts/getGitCommit.sh)
1921

2022
echo $BUILD_VERSION >$VERSION_FILE
2123

22-
GOGC=1500 go install \
24+
GOGC=1500 go install -v \
2325
-ldflags "-X $PKG_NAME.version=$BUILD_VERSION \
2426
-X $PKG_NAME.buildTime=$BUILD_TIME \
2527
-X $PKG_NAME.gitCommit=$GIT_COMMIT \

0 commit comments

Comments
 (0)