diff options
author | skullY <skullydazed@gmail.com> | 2018-10-09 09:40:10 -0700 |
---|---|---|
committer | Drashna Jaelre <drashna@live.com> | 2018-10-22 13:24:43 -0700 |
commit | ca56c2145f25ab04daa6bb96f31b948be9e57ef2 (patch) | |
tree | e20e94b7d3e864b7b7b928021740fd1cd9fb2fad /util/qmk_install.sh | |
parent | 704a2e8d3c0bd15f6c8accd5a39fb88ca6c9e2d5 (diff) | |
download | qmk_firmware-ca56c2145f25ab04daa6bb96f31b948be9e57ef2.tar.gz |
Fold install_dependencies.sh into linux_install.sh and freebsd_install.sh
Diffstat (limited to 'util/qmk_install.sh')
-rwxr-xr-x | util/qmk_install.sh | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/util/qmk_install.sh b/util/qmk_install.sh index 6f35e4c71..76ecf5fc0 100755 --- a/util/qmk_install.sh +++ b/util/qmk_install.sh @@ -7,16 +7,19 @@ case $(uname -a) in *Darwin*) exec "${util_dir}/macos_install.sh" ;; - *Linux*Microsoft*) + *Linux*Microsoft*) exec "${util_dir}/wsl_install.sh" - ;; + ;; + *FreeBSD*) + exec "${util_dir}/freebsd_install.sh" + ;; *Linux*) exec "${util_dir}/linux_install.sh" ;; MSYS_NT*|MINGW64_NT*|MINGW32_NT*) exec "${util_dir}/msys2_install.sh" ;; - *) - echo "Environment not supported. Please see https://docs.qmk.fm for details on how to configure the QMK Firmware build tools manually." - ;; + *) + echo "Environment not supported. Please see https://docs.qmk.fm for details on how to configure the QMK Firmware build tools manually." + ;; esac |