浏览代码

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
Taylor Gonzalez 6 年之前
父节点
当前提交
bb4af7deee
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      util/qmk_install.sh

+ 1 - 1
util/qmk_install.sh

@@ -10,7 +10,7 @@ case $(uname) in
 	Linux)
 		exec "${util_dir}/linux_install.sh"
 	;;
-	MSYS_NT*)
+	MSYS_NT*|MINGW_64*)
 		exec "${util_dir}/msys2_install.sh"
 	;;
 esac