From 92a06fc5da81ce05a28ee1239e3a99752e067218 Mon Sep 17 00:00:00 2001 From: Hugo Freire Date: Sun, 6 Dec 2015 12:56:51 +0100 Subject: [PATCH] Allow to run sbt interactive mode in git for windows bash --- src/universal/bin/sbt | 1 + 1 file changed, 1 insertion(+) diff --git a/src/universal/bin/sbt b/src/universal/bin/sbt index 48d1ff90f..632d45fd5 100755 --- a/src/universal/bin/sbt +++ b/src/universal/bin/sbt @@ -37,6 +37,7 @@ is_cygwin() { local os=$(uname -s) case "$os" in CYGWIN*) return 0 ;; + MINGW*) return 0 ;; *) return 1 ;; esac }