diff options
-rw-r--r-- | util/wsl_install.sh | 13 |
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 |
137 | fi | 137 | fi |
138 | 138 | ||
139 | while 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 | ||
150 | done | ||
151 | |||
139 | echo | 152 | echo |
140 | echo "******************************************************************************" | 153 | echo "******************************************************************************" |
141 | echo "Installation completed!" | 154 | echo "Installation completed!" |