From 39bbcf2f9cc954a8f03825f64a79d228b9b49f93 Mon Sep 17 00:00:00 2001 From: Klaus Frank Date: Fri, 22 Apr 2022 15:30:35 +0200 Subject: [PATCH] Fix for newer go version (#30889) go get for compiling and installing is deprecated. Updating it to the new "go install" --- scripts/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/build.sh b/scripts/build.sh index 98b2410f10..a7b2002b6e 100755 --- a/scripts/build.sh +++ b/scripts/build.sh @@ -29,7 +29,7 @@ fi if ! which gox > /dev/null; then echo "==> Installing gox..." - go get github.com/mitchellh/gox + go install github.com/mitchellh/gox fi # Instruct gox to build statically linked binaries