Merge pull request #96 from TLmaK0/fix_git_for_windows_interactive

Allow to run sbt interactive mode in git for windows bash
This commit is contained in:
eugene yokota 2016-02-22 02:07:52 -05:00
commit 55628f6437
1 changed files with 1 additions and 0 deletions

View File

@ -37,6 +37,7 @@ is_cygwin() {
local os=$(uname -s)
case "$os" in
CYGWIN*) return 0 ;;
MINGW*) return 0 ;;
*) return 1 ;;
esac
}