Browse Source

Fix minor typo in qmk_install.sh for MSYS/MINGW64 detection

Drashna Jaelre 6 năm trước cách đây
mục cha
commit
9c8f8bd3bc
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  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*|MINGW_64*)
+	MSYS_NT*|MINGW64_NT*)
 		exec "${util_dir}/msys2_install.sh"
 	;;
 esac