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
|
2024-05-07 10:19:58 +00:00
|
|
|
# https://github.com/cloudflare/go/tree/ec0a014545f180b0c74dfd687698657a9e86e310 is version go1.22.2-devel-cf
|
|
|
|
git checkout -q ec0a014545f180b0c74dfd687698657a9e86e310
|
2023-12-14 18:03:19 +00:00
|
|
|
& ./make.bat
|
|
|
|
|
|
|
|
Write-Output "Installed"
|