Use a shebang (#!/bin/sh) to run sbt.sh

If no shebang provided in a shell file, it will be executed by default shell.

However this script is not compatible with Fish Shell, so use sh to execute it.
This commit is contained in:
Lingchao Xin
2014-09-04 10:25:24 +08:00
parent d33886db89
commit 698eafa562

1
sbt.sh
View File

@@ -1 +1,2 @@
#!/bin/sh
java -Dsbt.log.noformat=true -XX:+CMSClassUnloadingEnabled -XX:MaxPermSize=256m -Xmx512M -Xss2M -Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=5005 -jar `dirname $0`/sbt-launch-0.13.5.jar "$@"