diff options
| author | (@rkmathi) | 2014-06-05 11:21:49 +0900 |
|---|---|---|
| committer | Mike McQuaid | 2014-06-05 10:39:09 +0100 |
| commit | 3751064bbc2a35622a1c7fb35a48f8b589458d83 (patch) | |
| tree | 92b60fdcda2fe4d6c6ac4e9cfc0a476a47735d22 /Library | |
| parent | 9a8245fe8234d7c4ed69f56f4fd410f61239c923 (diff) | |
| download | homebrew-3751064bbc2a35622a1c7fb35a48f8b589458d83.tar.bz2 | |
sbt: don't use Java 8 incompatible flag.
Closes #29888.
Closes #29889.
Closes #29892.
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/sbt.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Formula/sbt.rb b/Library/Formula/sbt.rb index 6642c3e40..472c9c35a 100644 --- a/Library/Formula/sbt.rb +++ b/Library/Formula/sbt.rb @@ -10,7 +10,7 @@ class Sbt < Formula (bin/"sbt").write <<-EOS.undent #!/bin/sh test -f ~/.sbtconfig && . ~/.sbtconfig - exec java -Xms512M -Xmx1536M -Xss1M -XX:+CMSClassUnloadingEnabled -XX:MaxPermSize=256M ${SBT_OPTS} -jar #{libexec}/sbt-launch.jar "$@" + exec java -Xms512M -Xmx1536M -Xss1M -XX:+CMSClassUnloadingEnabled ${SBT_OPTS} -jar #{libexec}/sbt-launch.jar "$@" EOS libexec.install Dir['*'] |
