~ruther/qmk_firmware

bb4af7deeee495a8a96d8db46e077895a95f8bb0 — Taylor Gonzalez 7 years ago d8db4ab
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
1 files changed, 1 insertions(+), 1 deletions(-)

M util/qmk_install.sh
M util/qmk_install.sh => util/qmk_install.sh +1 -1
@@ 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