mirror of
https://github.com/drone/drone-cli.git
synced 2026-01-20 18:01:34 +01:00
10 lines
139 B
Go
10 lines
139 B
Go
package browser
|
|
|
|
import "os/exec"
|
|
|
|
func openBrowser(url string) error {
|
|
return runCmd("xdg-open", url)
|
|
}
|
|
|
|
func setFlags(cmd *exec.Cmd) {}
|