Skip to content

Commit 6a7f206

Browse files
committed
Revert "Ensure 755 permissions on prebuild spawn-helper"
This reverts commit d08cd36.
1 parent 5a60c95 commit 6a7f206

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

scripts/prebuild.js

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,4 @@ if (!fs.existsSync(PREBUILD_DIR)) {
3131
process.exit(1);
3232
}
3333

34-
// Ensure spawn-helper has execute permission (may be stripped by npm pack)
35-
if (process.platform === 'darwin') {
36-
const spawnHelper = path.join(PREBUILD_DIR, 'spawn-helper');
37-
if (fs.existsSync(spawnHelper)) {
38-
fs.chmodSync(spawnHelper, 0o755);
39-
}
40-
}
41-
4234
process.exit(0);

0 commit comments

Comments
 (0)