Explorar o código

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 %!s(int64=5) %!d(string=hai) anos
pai
achega
a9d22cad93
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      hack/dockerfile/install/gotestsum.installer

+ 1 - 1
hack/dockerfile/install/gotestsum.installer

@@ -5,5 +5,5 @@
 install_gotestsum() (
 install_gotestsum() (
 	set -e
 	set -e
 	export GO111MODULE=on
 	export GO111MODULE=on
-	GOBIN="${PREFIX}" go get ${GO_BUILDMODE} "gotest.tools/gotestsum@${GOTESTSUM_COMMIT}"
+	GOBIN="${PREFIX}" go get "gotest.tools/gotestsum@${GOTESTSUM_COMMIT}"
 )
 )