aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--util/wsl_install.sh13
1 files changed, 13 insertions, 0 deletions
diff --git a/util/wsl_install.sh b/util/wsl_install.sh
index f863c182e..8999da8a4 100644
--- a/util/wsl_install.sh
+++ b/util/wsl_install.sh
@@ -136,6 +136,19 @@ else
136 done 136 done
137fi 137fi
138 138
139while true; do
140 echo
141 echo "Do you want to add a symlink to the QMK repository in your home directory for convenience?"
142 echo "This will create a folder 'qmk_firmware' in your home directory."
143 echo "In the future you can use this folder instead of the full path on your windows file system"
144 read -p "(Y/N)? " res
145 case $res in
146 [Yy]* ) ln -sfn "$dir/.." ~/qmk_firmware; break;;
147 [Nn]* ) break;;
148 * ) echo "Invalid answer";;
149 esac
150done
151
139echo 152echo
140echo "******************************************************************************" 153echo "******************************************************************************"
141echo "Installation completed!" 154echo "Installation completed!"