From ad880e2d56cd9ab3841dd077d47979202c509460 Mon Sep 17 00:00:00 2001 From: Jesse Duffield Date: Sat, 1 Sep 2018 13:28:10 +1000 Subject: [PATCH] wrap windows start command in shell --- pkg/commands/os_windows.go | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/pkg/commands/os_windows.go b/pkg/commands/os_windows.go index f41c6d2b9..51ad401cd 100644 --- a/pkg/commands/os_windows.go +++ b/pkg/commands/os_windows.go @@ -5,7 +5,6 @@ func getPlatform() *Platform { os: "windows", shell: "cmd", shellArg: "/c", - escapedQuote: "\\\"", - openCommand: "start {{filename}}", - } -} + escapedQuote: `\"`, + openCommand: `cmd /c "start "" {{filename}}"`, +}}