From e725f38bdbe192bb280009c0e24e93fd4b47cb7b Mon Sep 17 00:00:00 2001 From: "Jason A. Donenfeld" Date: Tue, 30 Apr 2019 12:32:47 +0200 Subject: ui: fix quoting in error strings --- updater/msirunner_linux.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'updater') 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) { -- cgit v1.2.3-59-g8ed1b