aboutsummaryrefslogtreecommitdiff
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)
downloadqmk_firmware-b85ce4ce225e6e4f42d0cd8a8d9615260960edc6.tar.gz
qmk_firmware-b85ce4ce225e6e4f42d0cd8a8d9615260960edc6.zip
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 b593c6e77..89552b991 100644
--- a/util/wsl_install.sh
+++ b/util/wsl_install.sh
@@ -47,9 +47,9 @@ then
47else 47else
48 while true; do 48 while true; do
49 echo 49 echo
50 echo "Do you want to add 'source ~/qmk_utils/activate_wsl.sh' to the end of you .bashrc file?" 50 echo "Do you want to add 'source ~/qmk_utils/activate_wsl.sh' to the end of your"
51 echo "Without this make won't find the needed utils, so if you don't want to do it automatically," 51 echo ".bashrc file? Without this make won't find the needed utils, so if you don't"
52 echo "then you have to do it manually." 52 echo "want to do it automatically, then you have to do it manually later."
53 read -p "(Y/N)? " res 53 read -p "(Y/N)? " res
54 case $res in 54 case $res in
55 [Yy]* ) echo "source ~/qmk_utils/activate_wsl.sh" >> ~/.bashrc; break;; 55 [Yy]* ) echo "source ~/qmk_utils/activate_wsl.sh" >> ~/.bashrc; break;;
@@ -61,9 +61,10 @@ fi
61 61
62while true; do 62while true; do
63 echo 63 echo
64 echo "Do you want to add a symlink to the QMK repository in your home directory for convenience?" 64 echo "Do you want to add a symlink to the QMK repository in your home directory for"
65 echo "This will create a folder 'qmk_firmware' in your home directory." 65 echo "convenience? This will create a folder 'qmk_firmware' in your home directory."
66 echo "In the future you can use this folder instead of the full path on your windows file system" 66 echo "In the future you can use this folder instead of the full path on your Windows"
67 echo "file system."
67 read -p "(Y/N)? " res 68 read -p "(Y/N)? " res
68 case $res in 69 case $res in
69 [Yy]* ) ln -sfn "$dir/.." ~/qmk_firmware; break;; 70 [Yy]* ) ln -sfn "$dir/.." ~/qmk_firmware; break;;