aboutsummaryrefslogtreecommitdiff
path: root/src/run.bash
diff options
context:
space:
mode:
authorShenghou Ma <minux.ma@gmail.com>2012-09-17 01:26:57 +0800
committerShenghou Ma <minux.ma@gmail.com>2012-09-17 01:26:57 +0800
commita1a414e6f12f759adde426a5bdd8985d0ee7067d (patch)
treec3c0e068bbedce2a35deddb69f0e8ee87a22b650 /src/run.bash
parent329b27a5666c469212a73626a278feb49b1b0e89 (diff)
downloadgo-a1a414e6f12f759adde426a5bdd8985d0ee7067d.tar.xz
run.bash: fix a typo (fix build)
R=golang-dev CC=golang-dev https://golang.org/cl/6506121
Diffstat (limited to 'src/run.bash')
-rwxr-xr-xsrc/run.bash2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/run.bash b/src/run.bash
index 01560fa371..f379ff5a70 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