forked from mirrors/qmk_firmware
Fix qmk_install.sh to properly target MSYS (#3455)
* qmk_install fix for windows users. * Updated wildcard to caputre both MSYS and MINGW64 in qmk_install * added OR to windows qmk_install
This commit is contained in:
parent
d8db4ab202
commit
bb4af7deee
1 changed files with 1 additions and 1 deletions
|
@ -10,7 +10,7 @@ case $(uname) in
|
||||||
Linux)
|
Linux)
|
||||||
exec "${util_dir}/linux_install.sh"
|
exec "${util_dir}/linux_install.sh"
|
||||||
;;
|
;;
|
||||||
MSYS_NT*)
|
MSYS_NT*|MINGW_64*)
|
||||||
exec "${util_dir}/msys2_install.sh"
|
exec "${util_dir}/msys2_install.sh"
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
Loading…
Reference in a new issue