Adjusted linux open-code to assume existence of xdg-open.

The current implentation didn't work without a side-by-side file, which
somewhat reduces the usefulness of this library.

See https://github.com/skratchdot/open-golang/issues/2 .
This commit is contained in:
Sebastian Thiel 2014-09-04 12:56:57 +02:00
parent a09a2535ca
commit 05ac2d7bf3
1 changed files with 1 additions and 6 deletions

View File

@ -4,15 +4,10 @@ package open
import (
"os/exec"
"path"
"runtime"
)
func open(input string) *exec.Cmd {
// http://andrewbrookins.com/tech/golang-get-directory-of-the-current-file/
_, file, _, _ := runtime.Caller(1)
app := path.Join(path.Dir(file), "..", "vendor", "xdg-open")
return exec.Command(app, input)
return exec.Command("xdg-open", input)
}
func openWith(input string, appName string) *exec.Cmd {