2023-12-14 18:03:19 +00:00
|
|
|
Set-StrictMode -Version Latest
|
|
|
|
$ErrorActionPreference = "Stop"
|
|
|
|
$ProgressPreference = "SilentlyContinue"
|
|
|
|
|
|
|
|
Write-Output "Downloading cloudflare go..."
|
|
|
|
|
|
|
|
Set-Location "$Env:Temp"
|
|
|
|
|
|
|
|
git clone -q https://github.com/cloudflare/go
|
|
|
|
Write-Output "Building go..."
|
|
|
|
cd go/src
|
2025-01-30 11:11:54 +00:00
|
|
|
# https://github.com/cloudflare/go/tree/af19da5605ca11f85776ef7af3384a02a315a52b is version go1.22.5-devel-cf
|
|
|
|
git checkout -q af19da5605ca11f85776ef7af3384a02a315a52b
|
2023-12-14 18:03:19 +00:00
|
|
|
& ./make.bat
|
|
|
|
|
2024-07-22 08:30:04 +00:00
|
|
|
Write-Output "Installed"
|