Detect correct GOOS/ARCH for copying binary with build_consul_local

If GOOS/ARCH is set to something custom, we need to unset it before
testing the value so we can compare to the _original value_.
This commit is contained in:
Mitchell Hashimoto 2018-09-10 10:20:09 -07:00
parent 7a42c31330
commit f01fc96161
No known key found for this signature in database
GPG Key ID: 744E147AA52F5B0A
1 changed files with 1 additions and 1 deletions

View File

@ -460,7 +460,7 @@ function build_consul_local {
mkdir -p "${outdir}"
GOBIN_EXTRA=""
if test "${os}" != "$(go env GOOS)" -o "${arch}" != "$(go env GOARCH)"
if test "${os}" != "$(go env GOHOSTOS)" -o "${arch}" != "$(go env GOHOSTARCH)"
then
GOBIN_EXTRA="${os}_${arch}/"
fi