Skip to content

Commit aa539c2

Browse files
committed
fixup! Refactor cmake-rn to use a platform abstraction (#189)
Avoid code-signing when prebuilding
1 parent 4924f66 commit aa539c2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

packages/cmake-rn/src/platforms/apple.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,8 @@ export const platform: Platform<Target[], AppleOpts> = {
127127
];
128128
},
129129
buildArgs() {
130-
return [];
130+
// We expect the final application to sign these binaries
131+
return ["CODE_SIGNING_ALLOWED=NO"];
131132
},
132133
isSupportedByHost: function (): boolean | Promise<boolean> {
133134
return process.platform === "darwin";

0 commit comments

Comments
 (0)