Fall back to downloading from go.dev/dl instead of storage.googleapis.com/golang (#665)

* Fall back to downloading from dl.google.com/go instead of storage.googleapis.com/golang

* Use go.dev/dl instead
This commit is contained in:
Nicholas Ngai
2025-10-27 13:43:21 -07:00
committed by GitHub
parent c0137caad7
commit 7bc60db215
4 changed files with 6 additions and 6 deletions

View File

@@ -389,7 +389,7 @@ async function getInfoFromDist(
return null;
}
const downloadUrl = `https://storage.googleapis.com/golang/${version.files[0].filename}`;
const downloadUrl = `https://go.dev/dl/${version.files[0].filename}`;
return <IGoVersionInfo>{
type: 'dist',