mirror of
https://github.com/cloudflare/cloudflared.git
synced 2025-05-11 04:06:36 +00:00

Pins all docker and cfsetup builds to a specific go patch version. Also ran go fix on repo.
12 lines
172 B
Go
12 lines
172 B
Go
//go:build !windows && !darwin && !linux && !netbsd && !freebsd && !openbsd
|
|
|
|
package token
|
|
|
|
import (
|
|
"os/exec"
|
|
)
|
|
|
|
func getBrowserCmd(url string) *exec.Cmd {
|
|
return nil
|
|
}
|