Skip to content

Commit 25163d2

Browse files
committed
fix: fixed prebuild output path
1 parent 735d9d8 commit 25163d2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
/builds
88
# node-gyp
99
/build
10-
/prebuilds
10+
/prebuild
1111
/prepublishOnly
1212

1313
# Logs

scripts/prebuild.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ async function main(argv = process.argv) {
135135
});
136136

137137
const buildsPath = path.join(projectPath, 'build', 'Release');
138-
const prebuildsPath = path.join(projectPath, 'prebuilds');
138+
const prebuildsPath = path.join(projectPath, 'prebuild');
139139

140140
const buildNames = await fs.promises.readdir(buildsPath);
141141
const buildName = buildNames.find((filename) => /\.node$/.test(filename));

0 commit comments

Comments
 (0)