Files
skopeo/vendor/github.com/pkg/browser/browser_unsupported.go
renovate[bot] bd5ec4425d Update common, image, and storage deps to 63be353
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-12-01 20:49:31 +00:00

13 lines
229 B
Go

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