summaryrefslogtreecommitdiffstats
path: root/util/qmk_install.sh
diff options
context:
space:
mode:
authorskullY <skullydazed@gmail.com>2018-10-09 18:40:10 +0200
committerDrashna Jaelre <drashna@live.com>2018-10-22 22:24:43 +0200
commitca56c2145f25ab04daa6bb96f31b948be9e57ef2 (patch)
treee20e94b7d3e864b7b7b928021740fd1cd9fb2fad /util/qmk_install.sh
parent704a2e8d3c0bd15f6c8accd5a39fb88ca6c9e2d5 (diff)
downloadqmk_firmware-ca56c2145f25ab04daa6bb96f31b948be9e57ef2.tar.gz
qmk_firmware-ca56c2145f25ab04daa6bb96f31b948be9e57ef2.tar.xz
Fold install_dependencies.sh into linux_install.sh and freebsd_install.sh
Diffstat (limited to 'util/qmk_install.sh')
-rwxr-xr-xutil/qmk_install.sh13
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