Fix for newer go version (#30889)

go get for compiling and installing is deprecated. Updating it to the new "go install"
kevin/preview
Klaus Frank 4 years ago committed by GitHub
parent 5f58daaf57
commit 39bbcf2f9c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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

Loading…
Cancel
Save