1
0
mirror of https://github.com/drone/drone-cli.git synced 2026-01-22 19:11:34 +01:00
drone-cli/vendor/github.com/pkg/browser/browser_unsupported.go
2018-10-09 11:18:46 -07:00

16 lines
256 B
Go

// +build !linux,!windows,!darwin,!openbsd
package browser
import (
"fmt"
"os/exec"
"runtime"
)
func openBrowser(url string) error {
return fmt.Errorf("openBrowser: unsupported operating system: %v", runtime.GOOS)
}
func setFlags(cmd *exec.Cmd) {}