mirror of https://github.com/sbt/sbt.git
Merge pull request #131 from wsargent/patch-1
Add MSYS as a "cygwin" like
This commit is contained in:
commit
f9f389ec5e
|
|
@ -38,6 +38,7 @@ is_cygwin() {
|
||||||
case "$os" in
|
case "$os" in
|
||||||
CYGWIN*) return 0 ;;
|
CYGWIN*) return 0 ;;
|
||||||
MINGW*) return 0 ;;
|
MINGW*) return 0 ;;
|
||||||
|
MSYS*) return 0 ;;
|
||||||
*) return 1 ;;
|
*) return 1 ;;
|
||||||
esac
|
esac
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue