Skip to content

Commit d902deb

Browse files
committed
fix: rename prebuilds folder to prebuild
1 parent 4eee307 commit d902deb

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
@@ -8,7 +8,7 @@
88
# node-gyp
99
/build
1010
# prebuildify
11-
/prebuilds
11+
/prebuild
1212

1313
# Logs
1414
logs

scripts/prebuild.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ async function main(argv = process.argv) {
133133
});
134134

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

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

0 commit comments

Comments
 (0)