Skip to content

Commit 0713c5b

Browse files
tmp
1 parent 750b806 commit 0713c5b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

hack/prow/common.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ function install_dependencies() {
8585
# install golang if not present
8686
sudo -E hack/prow/installer/check_install_golang.sh /usr/local $GOLANG_VERSION_TO_INSTALL || true
8787
# install gotestsum if not present
88-
GOROOT="/usr/local/go" hack/prow/installer/check_install_gotestsum.sh || true
88+
hack/prow/installer/check_install_gotestsum.sh || true
8989
# install gopogh
9090
hack/prow/installer/check_install_gopogh.sh || true
9191

hack/prow/installer/check_install_gotestsum.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ set -eux -o pipefail
1818

1919
function install_gotestsum() {
2020
rm -f $(which gotestsum)
21-
sudo env "GOBIN=$GOROOT/bin" "PATH=$PATH" go install gotest.tools/gotestsum@v1.13.0
21+
go install gotest.tools/gotestsum@v1.13.0
2222
}
2323
echo "Installing gotestsum"
2424
which gotestsum || install_gotestsum

0 commit comments

Comments
 (0)