aboutsummaryrefslogtreecommitdiff
path: root/util/qmk_install.sh
diff options
context:
space:
mode:
Diffstat (limited to 'util/qmk_install.sh')
-rwxr-xr-xutil/qmk_install.sh10
1 files changed, 6 insertions, 4 deletions
diff --git a/util/qmk_install.sh b/util/qmk_install.sh
index 76ecf5fc0..714ee9144 100755
--- a/util/qmk_install.sh
+++ b/util/qmk_install.sh
@@ -7,19 +7,21 @@ case $(uname -a) in
7 *Darwin*) 7 *Darwin*)
8 exec "${util_dir}/macos_install.sh" 8 exec "${util_dir}/macos_install.sh"
9 ;; 9 ;;
10 *Linux*Microsoft*)
11 exec "${util_dir}/wsl_install.sh"
12 ;;
13 *FreeBSD*) 10 *FreeBSD*)
14 exec "${util_dir}/freebsd_install.sh" 11 exec "${util_dir}/freebsd_install.sh"
15 ;; 12 ;;
16 *Linux*) 13 *Linux*)
17 exec "${util_dir}/linux_install.sh" 14 exec "${util_dir}/linux_install.sh"
18 ;; 15 ;;
19 MSYS_NT*|MINGW64_NT*|MINGW32_NT*) 16 MINGW64_NT*)
20 exec "${util_dir}/msys2_install.sh" 17 exec "${util_dir}/msys2_install.sh"
21 ;; 18 ;;
19 MSYS_NT*|MINGW32_NT*)
20 echo "Please open a MinGW 64-bit terminal window and re-run this script."
21 exit 1
22 ;;
22 *) 23 *)
23 echo "Environment not supported. Please see https://docs.qmk.fm for details on how to configure the QMK Firmware build tools manually." 24 echo "Environment not supported. Please see https://docs.qmk.fm for details on how to configure the QMK Firmware build tools manually."
25 exit 1
24 ;; 26 ;;
25esac 27esac