We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9884569 commit 47acadbCopy full SHA for 47acadb
src/e-pr.js
@@ -302,7 +302,8 @@ Proceed?`,
302
return;
303
}
304
305
- const artifactName = `generated_artifacts_${options.platform}_${options.arch}`;
+ const artifactPlatform = options.platform === 'win32' ? 'win' : options.platform;
306
+ const artifactName = `generated_artifacts_${artifactPlatform}_${options.arch}`;
307
const artifact = artifacts.find((artifact) => artifact.name === artifactName);
308
if (!artifact) {
309
console.error(`Failed to find artifact: ${artifactName}`);
0 commit comments