| 1 | //go:build darwin |
| 2 | |
| 3 | package main |
| 4 | |
| 5 | import "os/exec" |
| 6 | |
| 7 | func openWorkspacePath(path string) error { |
| 8 | return exec.Command("open", path).Start() |
| 9 | } |
| 10 | |
| 11 | func openWorkspacePathWithType(path string, _ bool) error { |
| 12 | return openWorkspacePath(path) |
| 13 | } |
| 14 |