mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
a9d22cad93
No need for this binary as it's only used in tests. Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
9 lines
168 B
Bash
Executable file
9 lines
168 B
Bash
Executable file
#!/bin/sh
|
|
|
|
: ${GOTESTSUM_COMMIT:=v0.3.5}
|
|
|
|
install_gotestsum() (
|
|
set -e
|
|
export GO111MODULE=on
|
|
GOBIN="${PREFIX}" go get "gotest.tools/gotestsum@${GOTESTSUM_COMMIT}"
|
|
)
|