From 698eafa5624111779fcf4142a7610ee8d86f1be7 Mon Sep 17 00:00:00 2001 From: Lingchao Xin Date: Thu, 4 Sep 2014 10:25:24 +0800 Subject: [PATCH] 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. --- sbt.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/sbt.sh b/sbt.sh index 8df789017..0ffa9fe04 100755 --- a/sbt.sh +++ b/sbt.sh @@ -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 "$@"