Merge pull request #131 from wsargent/patch-1

Add MSYS as a "cygwin" like
This commit is contained in:
eugene yokota 2016-11-28 01:08:46 -05:00 committed by GitHub
commit f9f389ec5e
1 changed files with 1 additions and 0 deletions

View File

@ -38,6 +38,7 @@ is_cygwin() {
case "$os" in
CYGWIN*) return 0 ;;
MINGW*) return 0 ;;
MSYS*) return 0 ;;
*) return 1 ;;
esac
}