Skip to content

Commit

Permalink
[BUG]Fix nodejs download 404 error by switching to mirrors
Browse files Browse the repository at this point in the history
Issue Resolved:
opensearch-project#3618

Signed-off-by: Anan Zhuang <[email protected]>
  • Loading branch information
ananzh committed Mar 16, 2023
1 parent 725a2a1 commit dd2d8b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dev/build/tasks/nodejs/node_download_info.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export async function getNodeDownloadInfo(config: Config, platform: Platform) {
? `node-v${version}-win-x64.zip`
: `node-v${version}-${arch}.tar.gz`;

const url = `https://nodejs.org/dist/v${version}/${downloadName}`;
const url = `https://mirrors.nodejs.org/dist/v${version}/${downloadName}`;
const downloadPath = config.resolveFromRepo('.node_binaries', version, basename(downloadName));
const extractDir = config.resolveFromRepo('.node_binaries', version, arch);

Expand Down

0 comments on commit dd2d8b6

Please sign in to comment.