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, 6 insertions, 1 deletions
diff --git a/util/wsl_install.sh b/util/wsl_install.sh
index 0964929e7..314f520b9 100644
--- a/util/wsl_install.sh
+++ b/util/wsl_install.sh
@@ -35,7 +35,6 @@ function install_utils {
35 35
36function install_drivers { 36function install_drivers {
37 pushd $download_dir 37 pushd $download_dir
38 cp ../drivers.txt .
39 cmd.exe /C qmk_driver_installer.exe $1 $2 ../drivers.txt 38 cmd.exe /C qmk_driver_installer.exe $1 $2 ../drivers.txt
40 popd > /dev/null 39 popd > /dev/null
41} 40}
@@ -101,5 +100,11 @@ while true; do
101 esac 100 esac
102done 101done
103 102
103echo
104echo "Creating a softlink to the utils directory as ~/qmk_utils."
105echo "This is needed so that the the make system can find all utils it need."
106read -p "Press any key to continue (ctrl-c to abort)"
107ln -sf "$dir" ~/qmk_utils
108
104popd > /dev/null 109popd > /dev/null
105 110