summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--pkg/commands/os_windows.go7
1 files 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}}"`,
+}}