Browse Source

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>
Sebastiaan van Stijn 5 years ago
parent
commit
a9d22cad93
1 changed files with 1 additions and 1 deletions
  1. 1 1
      hack/dockerfile/install/gotestsum.installer

+ 1 - 1
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}"
 )