bugfix: Don't attempt to use Windows fallbacks on non-Windows OSes (#718)

This commit is contained in:
Adam Jones
2023-04-11 08:31:41 +01:00
committed by GitHub
parent 9d255ef245
commit d98fa11138
4 changed files with 1419 additions and 1324 deletions

View File

@ -127,8 +127,12 @@ export default abstract class BaseDistribution {
try {
downloadPath = await tc.downloadTool(info.downloadUrl);
} catch (err) {
if (err instanceof tc.HTTPError && err.httpStatusCode == 404) {
return await this.acquireNodeFromFallbackLocation(
if (
err instanceof tc.HTTPError &&
err.httpStatusCode == 404 &&
this.osPlat == 'win32'
) {
return await this.acquireWindowsNodeFromFallbackLocation(
info.resolvedVersion,
info.arch
);
@ -151,7 +155,7 @@ export default abstract class BaseDistribution {
return {range: valid, options};
}
protected async acquireNodeFromFallbackLocation(
protected async acquireWindowsNodeFromFallbackLocation(
version: string,
arch: string = os.arch()
): Promise<string> {