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 8395e16 commit 483ff80Copy full SHA for 483ff80
build/build.js
@@ -65,7 +65,7 @@ async function createProject() {
65
}
66
67
async function copyResult(filepath, target) {
68
- const srcFilename = path.join(...[filepath, ...addElemIf(isWin, 'Release'), 'dawn.node']);
+ const srcFilename = path.join(...[filepath, ...addElemIf(isWin, kConfig), 'dawn.node']);
69
const dstFilename = path.join('dist', `${target}.dawn.node`);
70
fs.mkdirSync(path.dirname(dstFilename), {recursive: true});
71
fs.copyFileSync(srcFilename, dstFilename);
0 commit comments