mirror of
https://github.com/openstenoproject/qmk
synced 2024-11-10 10:39:09 +00:00
Add WSL support to script
This commit is contained in:
parent
bcdd7735c8
commit
bd4ba8d180
1 changed files with 6 additions and 3 deletions
|
@ -3,11 +3,14 @@
|
||||||
|
|
||||||
util_dir=$(dirname "$0")
|
util_dir=$(dirname "$0")
|
||||||
|
|
||||||
case $(uname) in
|
case $(uname -a) in
|
||||||
Darwin)
|
*Darwin*)
|
||||||
exec "${util_dir}/macos_install.sh"
|
exec "${util_dir}/macos_install.sh"
|
||||||
;;
|
;;
|
||||||
Linux)
|
*Linux*Microsoft*)
|
||||||
|
exec "${util_dir}/wsl_install.sh"
|
||||||
|
;;
|
||||||
|
*Linux*)
|
||||||
exec "${util_dir}/linux_install.sh"
|
exec "${util_dir}/linux_install.sh"
|
||||||
;;
|
;;
|
||||||
MSYS_NT*|MINGW64_NT*|MINGW32_NT*)
|
MSYS_NT*|MINGW64_NT*|MINGW32_NT*)
|
||||||
|
|
Loading…
Reference in a new issue