Skip to content

Commit 12d7601

Browse files
committed
fix: update prebuilds directory path formatting
1 parent 80a3a08 commit 12d7601

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

script/install.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ const path = require('path');
33

44
/** Script to copy prebuilds for the current platform to build/Release directory. */
55

6-
const prebuildsDir = path.join(__dirname, '../prebuilds', process.platform, process.arch);
6+
const prebuildsDir = path.join(__dirname, '../prebuilds', `${process.platform}-${process.arch}`);
77
const releaseDir = path.join(__dirname, '../build/Release');
88

99
if (!fs.existsSync(prebuildsDir)) {

0 commit comments

Comments
 (0)