Code signed Mac app after boot

I am trying to sign a Mac application using the command line, I have a script that worked well in Mountain Lion but no longer works in Mavericks.

Everything seems to be working fine and working after signing the following result:

> spctl -a -vvvv Name.app
Name.app: accepted
source=Developer ID
origin=Developer ID Application: Name, Inc (HA44SZ69G3)

Then I will archive .app, upload to Amazon S3, download and unzip and run the same command - output:

spctl -a -vvvv Name.app
Name.app: rejected
source=no usable signature
+4
source share
1 answer

/ zip OS X? OS X, , , . zip-, , :

ditto -c -k --sequesterRsrc --keepParent src_directory archive.zip

(. ). , :

ditto -x -k archive.zip dst_directory
+5

Source: https://habr.com/ru/post/1531469/


All Articles