diff options
| author | fauxpark | 2019-08-06 20:20:53 +0200 |
|---|---|---|
| committer | Drashna Jaelre | 2019-08-06 20:20:53 +0200 |
| commit | 59d3b37130fc08caf0ed2926332e8741d5fd8517 (patch) | |
| tree | 0992c72502dc4e50cbb3f0e408ffdd64f2aec6d0 | |
| parent | a6701c28d23b70bb8ae3c14efb658d39eff34000 (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 } |