1
0
mirror of https://github.com/golang/go synced 2024-10-01 16:28:33 -06:00

run.bash: fix a typo (fix build)

R=golang-dev
CC=golang-dev
https://golang.org/cl/6506121
This commit is contained in:
Shenghou Ma 2012-09-17 01:26:57 +08:00
parent 329b27a566
commit a1a414e6f1

View File

@ -18,7 +18,7 @@ ulimit -c 0
# We need at least 256 files and ~300 MB of bss.
# On OS X ulimit -S -n rejects 'unlimited'.
[ "$(ulimit -H -n)" == "unlimited" ] || ulimit -S -n $(ulimit -H -n)
[ "$(ulimit -H -d)" == "unlimited" ] || ulimit -S -n $(ulimit -H -d)
[ "$(ulimit -H -d)" == "unlimited" ] || ulimit -S -d $(ulimit -H -d)
# allow all.bash to avoid double-build of everything
rebuild=true