Explorar el Código

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

Drashna Jaelre hace 6 años
padre
commit
9c8f8bd3bc
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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