]> git.donarmstrong.com Git - qmk_firmware.git/commitdiff
Fix minor typo in qmk_install.sh for MSYS/MINGW64 detection
authorDrashna Jaelre <drashna@live.com>
Fri, 10 Aug 2018 04:14:29 +0000 (21:14 -0700)
committerskullydazed <skullydazed@users.noreply.github.com>
Sat, 11 Aug 2018 20:18:36 +0000 (13:18 -0700)
util/qmk_install.sh

index 5a1a38fce5b0b309d0fd08a56ae77bb53647a176..67be6f47781ffe3409bde86d0acd0aae38bf57a4 100755 (executable)
@@ -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