1
0
mirror of https://github.com/drone/drone-cli.git synced 2026-01-24 03:48:00 +01:00
drone-cli/vendor/github.com/pkg/browser/browser_unsupported.go
Brad Rydzewski f18b9fe2ac update dep
2018-02-14 13:06:05 -08:00

13 lines
212 B
Go

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