summaryrefslogtreecommitdiff
path: root/vendor/github.com/skratchdot/open-golang/open/exec_darwin.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/skratchdot/open-golang/open/exec_darwin.go')
-rw-r--r--vendor/github.com/skratchdot/open-golang/open/exec_darwin.go15
1 files changed, 0 insertions, 15 deletions
diff --git a/vendor/github.com/skratchdot/open-golang/open/exec_darwin.go b/vendor/github.com/skratchdot/open-golang/open/exec_darwin.go
deleted file mode 100644
index 16160e6..0000000
--- a/vendor/github.com/skratchdot/open-golang/open/exec_darwin.go
+++ /dev/null
@@ -1,15 +0,0 @@
-// +build darwin
-
-package open
-
-import (
- "os/exec"
-)
-
-func open(input string) *exec.Cmd {
- return exec.Command("open", input)
-}
-
-func openWith(input string, appName string) *exec.Cmd {
- return exec.Command("open", "-a", appName, input)
-}