summaryrefslogtreecommitdiff
path: root/vendor/github.com/skratchdot/open-golang/open/exec_darwin.go
diff options
context:
space:
mode:
authorKali Kaneko (leap communications) <kali@leap.se>2019-08-08 00:19:33 +0200
committerKali Kaneko (leap communications) <kali@leap.se>2019-08-08 00:19:33 +0200
commitfde18e485ff7cbc7b2e33dade8e81136f06a5b60 (patch)
tree79a6dbd13e7e4a46e708a70104c548f403b477ae /vendor/github.com/skratchdot/open-golang/open/exec_darwin.go
parent93e1de570f47b095905835735dbd67479aa0c2de (diff)
[pkg] remove vendor
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)
-}