aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/updater
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
commitae799560944fa6e71992dda7f3cea77dec22f035 (patch)
tree92d6d31a05865627c9f5305c3ace098638abfb3f /updater
parentui: rename things to say tunnel less (diff)
downloadwireguard-windows-ae799560944fa6e71992dda7f3cea77dec22f035.tar.xz
wireguard-windows-ae799560944fa6e71992dda7f3cea77dec22f035.zip
updater: use /qb!- instead of /qb-
Diffstat (limited to 'updater')
-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()
}