2014-10-10 31 views
0

在此article之後,我正在爲所有框架運行codesign。不過,我仍然在使用插件發現代碼錯誤。適用於mac應用程序的編碼插件

/.../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 

如何爲插件添加codesign命令?嘗試了各種各樣的目錄/文件,但沒有奏效:

codesign --verbose --force --sign "$IDENTITY" "$PLUGINS_LOCATION/Flash Player.plugin" 
+0

原諒我們的無知...什麼文章? – jww 2014-10-10 03:11:52

+0

@jww它的開頭是鏈接:http://furbo.org/2013/10/17/code-signing-and-mavericks/ – aodj 2014-10-20 13:41:25

回答

0

我們必須協同設計單獨的插件:

codesign --deep --verbose --force --sign "Developer ID Application" Plugins/Flash\ Player.plugin 
相關問題