Fix for newer go version (#30889)

go get for compiling and installing is deprecated. Updating it to the new "go install"
This commit is contained in:
Klaus Frank 2022-04-22 15:30:35 +02:00 committed by GitHub
parent 5f58daaf57
commit 39bbcf2f9c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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