From 9d29e5a1b5bdf415f0ba81b711a42fa28b470be0 Mon Sep 17 00:00:00 2001 From: Victoria Dye Date: Mon, 1 Dec 2025 15:24:57 -0800 Subject: [PATCH] install-vendored-go: update download link The Google storage account appears to no longer be valid, so let's use the official download link from https://go.dev. --- script/install-vendored-go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/install-vendored-go b/script/install-vendored-go index 45ace01..76d2195 100755 --- a/script/install-vendored-go +++ b/script/install-vendored-go @@ -39,7 +39,7 @@ fi ROOTDIR="$( cd "$( dirname "$0" )/.." && pwd )" VENDORDIR="$ROOTDIR/vendor" -DOWNLOAD_URL=https://storage.googleapis.com/golang/$GO_PKG +DOWNLOAD_URL=https://go.dev/dl/$GO_PKG ARCHIVE="$VENDORDIR/$GO_PKG" INSTALLDIR="$VENDORDIR/$GO_VERSION" export GOROOT="$INSTALLDIR/go"