Skip to content

Commit

Permalink
try to force the install of mac-alias? god i hope this does not work
Browse files Browse the repository at this point in the history
  • Loading branch information
obra committed Dec 19, 2023
1 parent e752f13 commit 9b527fa
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions forge.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,7 @@ let config = {
shell: true,
});


// Clear out prebuilds for other architectures
// 1) we don't need them
// 2) windows binary signing tool blows up when it tries to sign them.
Expand All @@ -164,6 +165,13 @@ let config = {
fs.rmSync(path, { recursive: true });
}
});
if (platform === "darwin") {
const npmInstall = spawnSync("npm", ["install", "mac-alias"], {
cwd: buildPath,
stdio: "inherit",
shell: "true",
});
}
// Workaround from https://www.update.rocks/blog/fixing-the-python3/
if (platform === "darwin") {
// Directory to inspect
Expand Down

0 comments on commit 9b527fa

Please sign in to comment.