We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent efb9383 commit 70f4f9fCopy full SHA for 70f4f9f
1 file changed
scripts/build-release.sh
@@ -500,6 +500,14 @@ build_for_arch() {
500
codesign -fs "$SIGN_IDENTITY" --force --options runtime --timestamp "$dylib"
501
done
502
503
+ # Sign plugin bundles (stripped binaries need re-signing)
504
+ if [ -d "$PLUGINS_DIR" ]; then
505
+ for plugin in "$PLUGINS_DIR"/*.tableplugin; do
506
+ [ -d "$plugin" ] || continue
507
+ codesign -fs "$SIGN_IDENTITY" --force --options runtime --timestamp "$plugin"
508
+ done
509
+ fi
510
+
511
# Sign the app bundle last
512
codesign -fs "$SIGN_IDENTITY" --force --options runtime --timestamp "$BUILD_DIR/$OUTPUT_NAME"
513
echo "✅ Code signing complete"
0 commit comments