cloudflare/cloudflared

Public

mirrored from https://github.com/cloudflare/cloudflaredAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
2026.2.0

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

.ci/scripts/mac/install-go.sh

14lines · modecode

1rm -rf /tmp/go
2export GOCACHE=/tmp/gocache
3rm -rf $GOCACHE
4
5if [ -z "$1" ]
6 then
7 echo "No go version supplied"
8fi
9
10brew install "$1"
11
12go version
13which go
14go env