diff options
| author | skullydazed <skullydazed@users.noreply.github.com> | 2018-03-06 14:37:48 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-03-06 14:37:48 -0800 |
| commit | 08e48eb6f534c7eeb692e8e63b81f41110dcb5e3 (patch) | |
| tree | 185ec53e454639431fdaa0d998407361986940db /util/qmk_install.sh | |
| parent | 12c8ee956dc0230b571bc51f785ae417073d5c67 (diff) | |
| download | qmk_firmware-08e48eb6f534c7eeb692e8e63b81f41110dcb5e3.tar.gz qmk_firmware-08e48eb6f534c7eeb692e8e63b81f41110dcb5e3.zip | |
Add a newbie guide for people completely new to QMK (#2480)
Diffstat (limited to 'util/qmk_install.sh')
| -rwxr-xr-x | util/qmk_install.sh | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/util/qmk_install.sh b/util/qmk_install.sh new file mode 100755 index 000000000..0272f8af8 --- /dev/null +++ b/util/qmk_install.sh | |||
| @@ -0,0 +1,16 @@ | |||
| 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 | ||
