tool/gocross: do all the bootstrap steps in a subshell

This avoids accidentally overwriting variables from the input
environment, which might non-deterministically change the behavior
of gocross.

Signed-off-by: David Anderson <danderson@tailscale.com>
pull/7364/head
David Anderson 1 year ago committed by Dave Anderson
parent abc874b04e
commit 7444dabb68

@ -12,6 +12,11 @@ if [ "${CI:-}" = "true" ]; then
set -x set -x
fi fi
# Locate a bootstrap toolchain and (re)build gocross if necessary. We run all of
# this in a subshell because posix shell semantics make it very easy to
# accidentally mutate the input environment that will get passed to gocross at
# the bottom of this script.
(
repo_root="$(dirname $0)/../.." repo_root="$(dirname $0)/../.."
toolchain="$HOME/.cache/tailscale-go" toolchain="$HOME/.cache/tailscale-go"
@ -61,12 +66,13 @@ if [ -x "$gocross_path" ]; then
fi fi
fi fi
if [ "$gocross_ok" = "0" ]; then if [ "$gocross_ok" = "0" ]; then
( unset GOOS
unset GOOS unset GOARCH
unset GOARCH unset GO111MODULE
unset GO111MODULE unset GOROOT
export CGO_ENABLED=0 export CGO_ENABLED=0
"$toolchain/bin/go" build -o "$gocross_path" tailscale.com/tool/gocross "$toolchain/bin/go" build -o "$gocross_path" -ldflags='-X tailscale.com/version/gitCommitStamp=$wantver' tailscale.com/tool/gocross
)
fi fi
exec "$gocross_path" "$@" ) # End of the subshell execution.
exec "$(dirname $0)/../../gocross" "$@"

Loading…
Cancel
Save