mirror of
https://github.com/moby/buildkit.git
synced 2026-08-07 16:20:46 +00:00
15 lines
288 B
Go
15 lines
288 B
Go
package browser
|
|
|
|
import (
|
|
"errors"
|
|
"os/exec"
|
|
)
|
|
|
|
func openBrowser(url string) error {
|
|
err := runCmd("xdg-open", url)
|
|
if e, ok := err.(*exec.Error); ok && e.Err == exec.ErrNotFound {
|
|
return errors.New("xdg-open: command not found - install xdg-utils from pkgsrc(7)")
|
|
}
|
|
return err
|
|
}
|