1
0
mirror of https://github.com/openshift/image-registry.git synced 2026-02-06 21:45:21 +01:00
Files
image-registry/vendor/github.com/pkg/browser/browser_linux.go
2023-06-26 14:01:28 +02:00

22 lines
563 B
Go

package browser
import (
"os/exec"
"strings"
)
func openBrowser(url string) error {
providers := []string{"xdg-open", "x-www-browser", "www-browser"}
// There are multiple possible providers to open a browser on linux
// One of them is xdg-open, another is x-www-browser, then there's www-browser, etc.
// Look for one that exists and run it
for _, provider := range providers {
if _, err := exec.LookPath(provider); err == nil {
return runCmd(provider, url)
}
}
return &exec.Error{Name: strings.Join(providers, ","), Err: exec.ErrNotFound}
}