Add Mingw/Msys support

This commit is contained in:
Ross Smith II 2018-03-03 20:02:45 -08:00
parent 09a018ea5a
commit adfedf4b64
1 changed files with 2 additions and 1 deletions

3
yadm
View File

@ -809,11 +809,12 @@ function set_operating_system() {
fi
case "$OPERATING_SYSTEM" in
CYGWIN*)
CYGWIN*|MINGW*|MSYS*)
git_version=$(git --version 2>/dev/null)
if [[ "$git_version" =~ windows ]] ; then
USE_CYGPATH=1
fi
OPERATING_SYSTEM=$(uname -o)
;;
*)
;;