aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/updater/msirunner_windows.go
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2019-05-02 19:29:56 +0200
committerJason A. Donenfeld <Jason@zx2c4.com>2019-05-02 19:29:56 +0200
commitceb538db27ab233362867c315da117a163022156 (patch)
tree92d6d31a05865627c9f5305c3ace098638abfb3f /updater/msirunner_windows.go
parentui: rename things to say tunnel less (diff)
downloadwireguard-windows-ceb538db27ab233362867c315da117a163022156.tar.xz
wireguard-windows-ceb538db27ab233362867c315da117a163022156.zip
updater: use /qb!- instead of /qb-
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Diffstat (limited to '')
-rw-r--r--updater/msirunner_windows.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/updater/msirunner_windows.go b/updater/msirunner_windows.go
index a11ed335..dfa921ee 100644
--- a/updater/msirunner_windows.go
+++ b/updater/msirunner_windows.go
@@ -17,7 +17,7 @@ func runMsi(msiPath string) error {
if err != nil {
return err
}
- cmd := exec.Command(path.Join(system32, "msiexec.exe"), "/qb-", "/i", path.Base(msiPath))
+ cmd := exec.Command(path.Join(system32, "msiexec.exe"), "/qb!-", "/i", path.Base(msiPath))
cmd.Dir = path.Dir(msiPath)
return cmd.Run()
}