summaryrefslogtreecommitdiff
path: root/dev/run
diff options
context:
space:
mode:
Diffstat (limited to 'dev/run')
-rwxr-xr-xdev/run4
1 files changed, 2 insertions, 2 deletions
diff --git a/dev/run b/dev/run
index 8af3ac416..a7a494a6e 100755
--- a/dev/run
+++ b/dev/run
@@ -265,10 +265,10 @@ def hack_default_ini(ctx, node, contents):
mainjs = os.path.join(ctx['rootdir'], "share", "server", "main.js")
coffeejs = os.path.join(ctx['rootdir'], "share", "server", "main-coffee.js")
- repl = toposixpath("javascript = %s %s" % (couchjs, mainjs))
+ repl = toposixpath("javascript = %s -S 4000000 %s" % (couchjs, mainjs))
contents = re.sub("(?m)^javascript.*$", repl, contents)
- repl = toposixpath("coffeescript = %s %s" % (couchjs, coffeejs))
+ repl = toposixpath("coffeescript = %s -S 4000000 %s" % (couchjs, coffeejs))
contents = re.sub("(?m)^coffeescript.*$", repl, contents)
return contents