aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShenghou Ma <minux.ma@gmail.com>2012-09-22 05:55:14 +1000
committerShenghou Ma <minux.ma@gmail.com>2012-09-22 05:55:14 +1000
commite65172afbe2e5ffaf84843cd74c856d4c06bd8b4 (patch)
tree93e23f39a3d0dca472dce17f9992d964f8c78629
parentc01c6c672d0fa8e84e9ba37b268c62db5968916e (diff)
downloadgo-e65172afbe2e5ffaf84843cd74c856d4c06bd8b4.tar.gz
go-e65172afbe2e5ffaf84843cd74c856d4c06bd8b4.zip
[release-branch.go1] run.bash: fix a typo (fix build)
««« backport 11cdfc399090 run.bash: fix a typo (fix build) R=golang-dev CC=golang-dev https://golang.org/cl/6506121 »»»
-rwxr-xr-xsrc/run.bash2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/run.bash b/src/run.bash
index 639cc55b45..f54b9160d4 100755
--- a/src/run.bash
+++ b/src/run.bash
@@ -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