diff options
author | Drashna Jaelre <drashna@live.com> | 2018-08-11 12:52:09 -0700 |
---|---|---|
committer | skullydazed <skullydazed@users.noreply.github.com> | 2018-08-11 13:18:36 -0700 |
commit | bcdd7735c8fca998d7d609ebb4be22ee29b6e340 (patch) | |
tree | 308f4fe85654bb29a5b70096a4476140835cc06b | |
parent | 99cb107b717d75acae4278d62dfd2f400e0de600 (diff) | |
download | qmk_firmware-bcdd7735c8fca998d7d609ebb4be22ee29b6e340.tar.gz qmk_firmware-bcdd7735c8fca998d7d609ebb4be22ee29b6e340.zip |
Add error message if config not detected
-rwxr-xr-x | util/qmk_install.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/util/qmk_install.sh b/util/qmk_install.sh index dcfa894b90..fede835dbc 100755 --- a/util/qmk_install.sh +++ b/util/qmk_install.sh @@ -13,4 +13,6 @@ case $(uname) in MSYS_NT*|MINGW64_NT*|MINGW32_NT*) exec "${util_dir}/msys2_install.sh" ;; + *) + echo "Environment not support. Pleas see https://docs.qmk.fm for details on how to configure the QMK Firmware build tools" esac |