Commit 12ece77c authored by Russ Cox's avatar Russ Cox

build: stop on failed deps.bash

Apparently some versions of bash do the ||exit implicitly
when in set -e mode, but others do not.  ???

R=gri
CC=golang-dev
https://golang.org/cl/5285043
parent ff866c4c
......@@ -69,7 +69,7 @@ fi
(
cd "$GOROOT"/src/pkg;
bash deps.bash # do this here so clean.bash will work in the pkg directory
)
) || exit 1
bash "$GOROOT"/src/clean.bash
# pkg builds libcgo and the Go programs in cmd.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment