1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

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>
This commit is contained in:
Sebastiaan van Stijn 2020-06-26 16:57:09 +02:00
parent 20570d91c8
commit a9d22cad93
No known key found for this signature in database
GPG key ID: 76698F39D527CE8C

View file

@ -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}"
)