aminal/platform/linuxLaunch.go

12 lines
171 B
Go

// +build linux freebsd netbsd openbsd
package platform
import (
"os/exec"
)
func LaunchTarget(target string) error {
return exec.Command("xdg-open", target).Run()
}