summaryrefslogtreecommitdiffstats
path: root/pkg/commands/os_windows.go
diff options
context:
space:
mode:
authorJesse Duffield <jessedduffield@gmail.com>2018-09-01 12:22:33 +1000
committerJesse Duffield <jessedduffield@gmail.com>2018-09-01 12:53:51 +1000
commit04d5a473d758090b0f65af5520e91bc7924648a1 (patch)
tree101561dc17876e94389b7bce36f5a55ea8a747c0 /pkg/commands/os_windows.go
parentf127ae62bb67e86360a1a38971fef7e8e53cb5b9 (diff)
use start instead of cygstart to open files on windows
Diffstat (limited to 'pkg/commands/os_windows.go')
-rw-r--r--pkg/commands/os_windows.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/commands/os_windows.go b/pkg/commands/os_windows.go
index 5b50d2c38..f41c6d2b9 100644
--- a/pkg/commands/os_windows.go
+++ b/pkg/commands/os_windows.go
@@ -6,6 +6,6 @@ func getPlatform() *Platform {
shell: "cmd",
shellArg: "/c",
escapedQuote: "\\\"",
- openCommand: "cygstart {{filename}}",
+ openCommand: "start {{filename}}",
}
}