0

Following this article, I'm running codesign for all frameworks. However, I'm still getting a codesign error with plugins.

/.../Applications/MyApp.app: code object is not signed at all
In subcomponent: /.../MyApp.app/Contents/PlugIns/Flash Player.plugin
Command /usr/bin/codesign failed with exit code 1

How should I add codesign command for plugins? Tried various directories/files, but didn't work:

codesign --verbose --force --sign "$IDENTITY" "$PLUGINS_LOCATION/Flash Player.plugin"
Grnbeagle
  • 1,751
  • 2
  • 16
  • 26

1 Answers1

0

We had to codesign the plugin separately:

codesign --deep --verbose --force --sign "Developer ID Application" Plugins/Flash\ Player.plugin
Grnbeagle
  • 1,751
  • 2
  • 16
  • 26