]> git.donarmstrong.com Git - qmk_firmware.git/blob - util/qmk_install.sh
Add a newbie guide for people completely new to QMK (#2480)
[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) in
7         Darwin)
8                 exec "${util_dir}/macos_install.sh"
9         ;;
10         Linux)
11                 exec "${util_dir}/linux_install.sh"
12         ;;
13         MSYS_NT*)
14                 exec "${util_dir}/msys2_install.sh"
15         ;;
16 esac