]> git.donarmstrong.com Git - qmk_firmware.git/blob - util/qmk_install.sh
[Keymap] Add missing tap dance action and fix RGB hues in personal keymaps (#6312)
[qmk_firmware.git] / util / qmk_install.sh
1 #!/bin/sh
2 # Pick the correct install script based on the current OS
3
4 util_dir=$(dirname "$0")
5
6 case $(uname -a) in
7         *Darwin*)
8                 exec "${util_dir}/macos_install.sh"
9         ;;
10         *Linux*Microsoft*)
11                 exec "${util_dir}/wsl_install.sh"
12         ;;
13         *FreeBSD*)
14                 exec "${util_dir}/freebsd_install.sh"
15         ;;
16         *Linux*)
17                 exec "${util_dir}/linux_install.sh"
18         ;;
19         MSYS_NT*|MINGW64_NT*|MINGW32_NT*)
20                 exec "${util_dir}/msys2_install.sh"
21         ;;
22         *)
23                 echo "Environment not supported. Please see https://docs.qmk.fm for details on how to configure the QMK Firmware build tools manually."
24         ;;
25 esac