mirror of
https://github.com/cloudflare/cloudflared.git
synced 2026-01-12 06:53:30 +00:00
Pins all docker and cfsetup builds to a specific go patch version. Also ran go fix on repo.
11 lines
136 B
Go
11 lines
136 B
Go
//go:build darwin
|
|
|
|
package token
|
|
|
|
import (
|
|
"os/exec"
|
|
)
|
|
|
|
func getBrowserCmd(url string) *exec.Cmd {
|
|
return exec.Command("open", url)
|
|
}
|