diff options
author | fauxpark <fauxpark@gmail.com> | 2019-08-07 04:20:53 +1000 |
---|---|---|
committer | Florian Didron <fdidron@users.noreply.github.com> | 2019-08-13 10:46:40 +0900 |
commit | dd1a8564ed8685bcbebf06754b48addcf7ff9644 (patch) | |
tree | 1fb5a1d5630fcc39c7f9ab34c6baf42debd5b94f | |
parent | 31b5a5c22f1a7e84ce2d352a2e41d66d8f4ec033 (diff) |
Fix qmk_install.sh on Windows dropping to command prompt (#6488)
-rwxr-xr-x | util/win_shared_install.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/win_shared_install.sh b/util/win_shared_install.sh index c7517881ee..f8fc9308f4 100755 --- a/util/win_shared_install.sh +++ b/util/win_shared_install.sh @@ -34,7 +34,7 @@ function install_drivers { pushd "$download_dir" cp -f "$dir/drivers.txt" . echo - cmd.exe /c "qmk_driver_installer.exe $1 $2 drivers.txt" + cmd.exe //c "qmk_driver_installer.exe $1 $2 drivers.txt" popd > /dev/null } |