diff options
author | Fred Sundvik <fsundvik@gmail.com> | 2017-05-28 20:49:42 +0300 |
---|---|---|
committer | Fred Sundvik <fsundvik@gmail.com> | 2017-05-28 21:30:55 +0300 |
commit | fa4a492677d1435637dceee03302e1bdbd579a2d (patch) | |
tree | 601a4933aad2e5d2c8722d9c15c91901eb893842 /util/wsl_install.sh | |
parent | 3e4f2f5590028851886df54e608d4215883939ba (diff) | |
download | firmware-fa4a492677d1435637dceee03302e1bdbd579a2d.tar.gz firmware-fa4a492677d1435637dceee03302e1bdbd579a2d.tar.bz2 firmware-fa4a492677d1435637dceee03302e1bdbd579a2d.zip |
Fix symlink creation
Diffstat (limited to 'util/wsl_install.sh')
-rw-r--r-- | util/wsl_install.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/wsl_install.sh b/util/wsl_install.sh index 645ddce71..bb2df1b4d 100644 --- a/util/wsl_install.sh +++ b/util/wsl_install.sh @@ -114,7 +114,7 @@ echo echo "Creating a softlink to the utils directory as ~/qmk_utils." echo "This is needed so that the the make system can find all utils it need." read -p "Press any key to continue (ctrl-c to abort)" -ln -sf "$dir" ~/qmk_utils +ln -sfn "$dir" ~/qmk_utils echo echo "******************************************************************************" |