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 f798dac commit 3bb7a9fCopy full SHA for 3bb7a9f
build/build.js
@@ -73,7 +73,7 @@ async function packageExtension(target) {
73
}
74
75
async function copyResult(filepath, target) {
76
- const srcFilename = path.join(filepath, 'dawn.node');
+ const srcFilename = path.join(...[filepath, ...addElemIf(isWin, 'Debug'), 'dawn.node']);
77
const dstFilename = path.join('dist', `${target}.dawn.node`);
78
fs.mkdirSync(path.dirname(dstFilename), {recursive: true});
79
fs.copyFileSync(srcFilename, dstFilename);
0 commit comments