summaryrefslogtreecommitdiff
path: root/util/wsl_install.sh
diff options
context:
space:
mode:
authorFred Sundvik <fsundvik@gmail.com>2017-07-11 16:26:29 +0300
committerFred Sundvik <fsundvik@gmail.com>2017-07-11 16:26:29 +0300
commitb85ce4ce225e6e4f42d0cd8a8d9615260960edc6 (patch)
treef8fe32df86d0dd967b8aad30513f6a5a040ad87f /util/wsl_install.sh
parentd47db637edb4215f2313d59b6646e5e3dbb97e7c (diff)
Fix overlong lines, and a few spelling errors
Diffstat (limited to 'util/wsl_install.sh')
-rw-r--r--util/wsl_install.sh13
1 files changed, 7 insertions, 6 deletions
diff --git a/util/wsl_install.sh b/util/wsl_install.sh
index b593c6e777..89552b9918 100644
--- a/util/wsl_install.sh
+++ b/util/wsl_install.sh
@@ -47,9 +47,9 @@ then
else
while true; do
echo
- echo "Do you want to add 'source ~/qmk_utils/activate_wsl.sh' to the end of you .bashrc file?"
- echo "Without this make won't find the needed utils, so if you don't want to do it automatically,"
- echo "then you have to do it manually."
+ echo "Do you want to add 'source ~/qmk_utils/activate_wsl.sh' to the end of your"
+ echo ".bashrc file? Without this make won't find the needed utils, so if you don't"
+ echo "want to do it automatically, then you have to do it manually later."
read -p "(Y/N)? " res
case $res in
[Yy]* ) echo "source ~/qmk_utils/activate_wsl.sh" >> ~/.bashrc; break;;
@@ -61,9 +61,10 @@ fi
while true; do
echo
- echo "Do you want to add a symlink to the QMK repository in your home directory for convenience?"
- echo "This will create a folder 'qmk_firmware' in your home directory."
- echo "In the future you can use this folder instead of the full path on your windows file system"
+ echo "Do you want to add a symlink to the QMK repository in your home directory for"
+ echo "convenience? This will create a folder 'qmk_firmware' in your home directory."
+ echo "In the future you can use this folder instead of the full path on your Windows"
+ echo "file system."
read -p "(Y/N)? " res
case $res in
[Yy]* ) ln -sfn "$dir/.." ~/qmk_firmware; break;;