aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/updater
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2019-04-30 12:32:47 +0200
committerJason A. Donenfeld <Jason@zx2c4.com>2019-04-30 20:19:50 +0200
commite725f38bdbe192bb280009c0e24e93fd4b47cb7b (patch)
tree7fa96e664467adbd4fd7207a53f7bc9fdcd67c69 /updater
parentui: tunnelconfig -> tunneledit (diff)
downloadwireguard-windows-e725f38bdbe192bb280009c0e24e93fd4b47cb7b.tar.xz
wireguard-windows-e725f38bdbe192bb280009c0e24e93fd4b47cb7b.zip
ui: fix quoting in error strings
Diffstat (limited to 'updater')
-rw-r--r--updater/msirunner_linux.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/updater/msirunner_linux.go b/updater/msirunner_linux.go
index 974c0883..cbb52cf6 100644
--- a/updater/msirunner_linux.go
+++ b/updater/msirunner_linux.go
@@ -13,7 +13,7 @@ import (
// This isn't a Linux program, yes, but having the updater package work across platforms is quite helpful for testing.
func runMsi(msiPath string) error {
- return exec.Command("qarma", "--info", "--text", fmt.Sprintf("It seems to be working! Were we on Windows, \"%s\" would be executed.", msiPath)).Run()
+ return exec.Command("qarma", "--info", "--text", fmt.Sprintf("It seems to be working! Were we on Windows, ā€˜%sā€™ would be executed.", msiPath)).Run()
}
func msiSaveDirectory() (string, error) {