From 19f9330c320cfd013747ecf9be8a0b6f2ee1ba78 Mon Sep 17 00:00:00 2001 From: Josh Suereth Date: Tue, 30 Jul 2013 19:38:33 -0400 Subject: [PATCH] Fixes #53 - echo disabled after sbt exits. Bad flag in bash. Wish this thing had a compiler.... --- src/universal/bin/sbt-launch-lib.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/universal/bin/sbt-launch-lib.bash b/src/universal/bin/sbt-launch-lib.bash index 760bade4e..0c1b4d509 100755 --- a/src/universal/bin/sbt-launch-lib.bash +++ b/src/universal/bin/sbt-launch-lib.bash @@ -191,7 +191,7 @@ run() { exit_code=$? # Clean up the terminal from cygwin hacks. - if [[ "$IS_CYGWIN" == "true" ]]; then + if [[ "$CYGWIN_FLAG" == "true" ]]; then stty icanon echo > /dev/null 2>&1 fi exit $exit_code