mirror of https://github.com/sbt/sbt.git
Merge pull request #308 from esamson/master
Use exec to launch when not in cygwin
This commit is contained in:
commit
aa6ce25a86
|
|
@ -118,9 +118,13 @@ execRunner () {
|
||||||
echo ""
|
echo ""
|
||||||
}
|
}
|
||||||
|
|
||||||
# This used to be exec, but we loose the ability to re-hook stty then
|
if [[ "$CYGWIN_FLAG" == "true" ]]; then
|
||||||
# for cygwin... Maybe we should flag the feature here...
|
# In cygwin we loose the ability to re-hook stty if exec is used
|
||||||
"$@"
|
# https://github.com/sbt/sbt-launcher-package/issues/53
|
||||||
|
"$@"
|
||||||
|
else
|
||||||
|
exec "$@"
|
||||||
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
addJava () {
|
addJava () {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue