summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastiaan van Stijn <github@gone.nl>2020-06-26 16:57:09 +0200
committerSebastiaan van Stijn <github@gone.nl>2020-06-26 16:57:09 +0200
commita9d22cad93da030c020b7c75be6ee9d158427cc7 (patch)
treed032f50c42e4515305cda8d89499c8bf6562c666
parent20570d91c84c75daa16a3d7899b070776d148140 (diff)
downloaddocker-a9d22cad93da030c020b7c75be6ee9d158427cc7.tar.gz
hack/install: build gotestsum without -buildmode=pie
No need for this binary as it's only used in tests. Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
-rwxr-xr-xhack/dockerfile/install/gotestsum.installer2
1 files changed, 1 insertions, 1 deletions
diff --git a/hack/dockerfile/install/gotestsum.installer b/hack/dockerfile/install/gotestsum.installer
index 02345de0dd..7bde0b1aab 100755
--- a/hack/dockerfile/install/gotestsum.installer
+++ b/hack/dockerfile/install/gotestsum.installer
@@ -5,5 +5,5 @@
install_gotestsum() (
set -e
export GO111MODULE=on
- GOBIN="${PREFIX}" go get ${GO_BUILDMODE} "gotest.tools/gotestsum@${GOTESTSUM_COMMIT}"
+ GOBIN="${PREFIX}" go get "gotest.tools/gotestsum@${GOTESTSUM_COMMIT}"
)