From 5bf363ec2155f64cc9ace90357af9be44a963bd6 Mon Sep 17 00:00:00 2001 From: "Jason A. Donenfeld" Date: Tue, 30 Apr 2019 18:35:58 +0200 Subject: installer: stop/uninstall/start all WireGuard services Also clean up quite a few things. Signed-off-by: Simon Rozman Signed-off-by: Jason A. Donenfeld --- updater/msirunner_windows.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'updater') diff --git a/updater/msirunner_windows.go b/updater/msirunner_windows.go index 286cec1e..7a4e9d72 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"), "/qb", "/i", msiPath).Run() + return exec.Command(path.Join(system32, "msiexec.exe"), "/qb-", "/i", msiPath).Run() } func msiSaveDirectory() (string, error) { -- cgit v1.2.3-59-g8ed1b