aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/updater/msirunner_windows.go
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2019-04-29 11:16:28 +0200
committerJason A. Donenfeld <Jason@zx2c4.com>2019-04-29 11:16:28 +0200
commitf526e90578bd567129006f3b90cadc6e17163842 (patch)
tree1ab600f3c8bdbc29ac5de5d46116968b6ffe7f38 /updater/msirunner_windows.go
parentupdater: add initial skeleton (diff)
downloadwireguard-windows-f526e90578bd567129006f3b90cadc6e17163842.tar.xz
wireguard-windows-f526e90578bd567129006f3b90cadc6e17163842.zip
updater: use /qb instead of /quiet
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Diffstat (limited to 'updater/msirunner_windows.go')
-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 a498af3c..286cec1e 100644
--- a/updater/msirunner_windows.go
+++ b/updater/msirunner_windows.go
@@ -20,7 +20,7 @@ func runMsi(msiPath string) error {
// BUG: The Go documentation says that its built-in shell quoting isn't good for msiexec.exe.
// See https://github.com/golang/go/issues/15566. But perhaps our limited set of options
// actually works fine? Investigate this!
- return exec.Command(path.Join(system32, "msiexec.exe"), "/quiet", "/i", msiPath).Run()
+ return exec.Command(path.Join(system32, "msiexec.exe"), "/qb", "/i", msiPath).Run()
}
func msiSaveDirectory() (string, error) {