Skip to content

Commit e595b93

Browse files
committed
Update build directory
1 parent b9c6a36 commit e595b93

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

build.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ const { spawn, buildPaths, exists } = require('./shared');
2323
`--target-dir=${buildPaths.build}`,
2424
'--release'
2525
]);
26+
2627
await fs.copyFile(
2728
buildPaths.exeOut,
2829
buildPaths.exeFinal

shared.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ const getPaths = (arch) => ({
3333
submodule: path.join(__dirname, 'deps', 'dump_syms'),
3434
bin: path.join(__dirname, 'bin', `${process.platform}-${arch}`),
3535
build: path.join(__dirname, 'build'),
36-
exeOut: path.join(__dirname, 'build', 'release', `dump_syms${exe}`),
36+
exeOut: path.join(__dirname, 'build', ${getRustTarget()}, 'release', `dump_syms${exe}`),
3737
exeFinal: path.join(__dirname, 'bin', `${process.platform}-${arch}`, `dump_syms${exe}`),
3838
});
3939

0 commit comments

Comments
 (0)