aboutsummaryrefslogtreecommitdiff
path: root/src/bootstrap.bash
diff options
context:
space:
mode:
authorTobias Klauser <tklauser@distanz.ch>2019-04-12 14:20:21 +0200
committerTobias Klauser <tobias.klauser@gmail.com>2019-04-12 13:00:05 +0000
commitdf1cdbf7933ae03d716e4ce657f15d8e77309da5 (patch)
treef6f6c8f2c013d91fc183cdb4e1f0c390627e35df /src/bootstrap.bash
parent7f9e0220cdc3516308d24bba4ef8180b6a923a27 (diff)
downloadgo-df1cdbf7933ae03d716e4ce657f15d8e77309da5.tar.gz
go-df1cdbf7933ae03d716e4ce657f15d8e77309da5.zip
bootstrap.bash: fix build if no exec wrapper exists
Since CL 170941 bootstrap.bash fails if no exec wrapper exists for a given GOOS/GOARCH yet: #### Building ../../go-linux-arm-bootstrap Building Go cmd/dist using /usr/local/go. Building Go toolchain1 using /usr/local/go. Building Go bootstrap cmd/go (go_bootstrap) using Go toolchain1. Building Go toolchain2 using go_bootstrap and Go toolchain1. Building Go toolchain3 using go_bootstrap and Go toolchain2. Building packages and commands for host, linux/amd64. Building packages and commands for target, linux/arm. rm: cannot remove 'bin/go_linux_arm_exec': No such file or directory Fix it by using 'rm -f' to ignore nonexisting files. Change-Id: Ib4b1e19747052fa4dca06319f35cc25a0545c4f7 Reviewed-on: https://go-review.googlesource.com/c/go/+/171722 Run-TryBot: Tobias Klauser <tobias.klauser@gmail.com> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Elias Naur <mail@eliasnaur.com>
Diffstat (limited to 'src/bootstrap.bash')
-rwxr-xr-xsrc/bootstrap.bash2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bootstrap.bash b/src/bootstrap.bash
index 673fb61c67..bc9d445345 100755
--- a/src/bootstrap.bash
+++ b/src/bootstrap.bash
@@ -72,7 +72,7 @@ if [ "$goos" = "$gohostos" -a "$goarch" = "$gohostarch" ]; then
# prepare a clean toolchain for others.
true
else
- rm bin/go_${goos}_${goarch}_exec
+ rm -f bin/go_${goos}_${goarch}_exec
mv bin/*_*/* bin
rmdir bin/*_*
rm -rf "pkg/${gohostos}_${gohostarch}" "pkg/tool/${gohostos}_${gohostarch}"