mirror of
https://github.com/cloudflare/cloudflared.git
synced 2025-05-11 23:16:35 +00:00

Pins all docker and cfsetup builds to a specific go patch version. Also ran go fix on repo.
12 lines
136 B
Go
12 lines
136 B
Go
//go:build darwin
|
|
|
|
package token
|
|
|
|
import (
|
|
"os/exec"
|
|
)
|
|
|
|
func getBrowserCmd(url string) *exec.Cmd {
|
|
return exec.Command("open", url)
|
|
}
|