Fix golang download url to go.dev

This commit is contained in:
Masahiro Furudate 2024-04-06 03:00:41 +09:00
parent d35c59abb0
commit 65f08372d6
1 changed files with 4 additions and 4 deletions

View File

@ -15,6 +15,8 @@ const MANIFEST_URL = `https://raw.githubusercontent.com/${MANIFEST_REPO_OWNER}/$
type InstallationType = 'dist' | 'manifest';
const golangDownloadUrl = 'https://go.dev/dl/?mode=json&include=all';
export interface IGoVersionFile {
filename: string;
// darwin, linux, windows
@ -406,9 +408,8 @@ export async function findMatch(
let result: IGoVersion | undefined;
let match: IGoVersion | undefined;
const dlUrl = 'https://golang.org/dl/?mode=json&include=all';
const candidates: IGoVersion[] | null = await module.exports.getVersionsDist(
dlUrl
golangDownloadUrl
);
if (!candidates) {
throw new Error(`golang download url did not return results`);
@ -505,9 +506,8 @@ export function parseGoVersionFile(versionFilePath: string): string {
async function resolveStableVersionDist(versionSpec: string, arch: string) {
const archFilter = sys.getArch(arch);
const platFilter = sys.getPlatform();
const dlUrl = 'https://golang.org/dl/?mode=json&include=all';
const candidates: IGoVersion[] | null = await module.exports.getVersionsDist(
dlUrl
golangDownloadUrl
);
if (!candidates) {
throw new Error(`golang download url did not return results`);