aboutsummaryrefslogtreecommitdiff
path: root/util/wsl_install.sh
diff options
context:
space:
mode:
Diffstat (limited to 'util/wsl_install.sh')
-rw-r--r--util/wsl_install.sh7
1 files changed, 1 insertions, 6 deletions
diff --git a/util/wsl_install.sh b/util/wsl_install.sh
index d11c78ac7..c2c206d2b 100644
--- a/util/wsl_install.sh
+++ b/util/wsl_install.sh
@@ -15,20 +15,15 @@ fi
15while true; do 15while true; do
16 echo 16 echo
17 echo "Do you want to install all toolchain dependencies needed for compiling QMK?" 17 echo "Do you want to install all toolchain dependencies needed for compiling QMK?"
18 echo "This will run install_dependencies.sh, which calls apt-get upgrade."
19 echo "If you don't want that, you can install the dependencies manually." 18 echo "If you don't want that, you can install the dependencies manually."
20 read -p "(Y/N) " res 19 read -p "(Y/N) " res
21 case $res in 20 case $res in
22 [Yy]* ) sudo ./install_dependencies.sh; break;; 21 [Yy]* ) ./linux_install.sh; break;;
23 [Nn]* ) break;; 22 [Nn]* ) break;;
24 * ) echo "Invalid answer";; 23 * ) echo "Invalid answer";;
25 esac 24 esac
26done 25done
27 26
28echo "Installing dependencies needed for the installation (unzip, wget)"
29echo "This will ask for the sudo password"
30sudo apt-get install unzip wget
31
32download_dir=wsl_downloaded 27download_dir=wsl_downloaded
33 28
34source "$dir/win_shared_install.sh" 29source "$dir/win_shared_install.sh"