pull/1211/head
Aparna Jyothi 2025-01-31 20:22:20 +05:30
parent 4d246d010b
commit 07434d7eed
2 changed files with 2 additions and 1 deletions

1
dist/setup/index.js vendored
View File

@ -100457,6 +100457,7 @@ class NightlyNodejs extends base_distribution_prerelease_1.default {
// Check if mirrorUrl exists in the nodeInfo and return it if available
const mirrorUrl = this.nodeInfo.mirrorURL;
if (mirrorUrl) {
core.info(`Downloding Using mirror URL: ${mirrorUrl}`);
return mirrorUrl;
}
// Default to the official Node.js nightly distribution URL if no mirror URL is provided

View File

@ -20,7 +20,7 @@ export default class NightlyNodejs extends BasePrereleaseNodejs {
// Check if mirrorUrl exists in the nodeInfo and return it if available
const mirrorUrl = this.nodeInfo.mirrorURL;
if (mirrorUrl) {
core.info(`Downloding Using mirror URL: ${mirrorUrl}`);
return mirrorUrl;
}