From 2b462315e5bdc8add17a2208d3b3008af31b75b7 Mon Sep 17 00:00:00 2001 From: Josh Suereth Date: Sun, 14 Jul 2013 15:36:07 -0400 Subject: [PATCH] Reduce necessary memory --- src/universal/bin/sbt-launch-lib.bash | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/universal/bin/sbt-launch-lib.bash b/src/universal/bin/sbt-launch-lib.bash index 9a5d557a4..760bade4e 100755 --- a/src/universal/bin/sbt-launch-lib.bash +++ b/src/universal/bin/sbt-launch-lib.bash @@ -76,9 +76,9 @@ addDebugger () { } # a ham-fisted attempt to move some memory settings in concert -# so they need not be dicked around with individually. +# so they need not be dorked around with individually. get_mem_opts () { - local mem=${1:-1536} + local mem=${1:-1024} local perm=$(( $mem / 4 )) (( $perm > 256 )) || perm=256 (( $perm < 1024 )) || perm=1024