How to create a zip file in the same format as the

2020-02-09 00:22发布

On Mac OS X, you can create a zip archive from the Finder by selecting some files and selecting "Compress" from the contextual menu or the File menu. Unfortunately, the resulting file is not identical to the archive created by the zip command (with the default options).

This distinction matters to at least one service operated by Apple, which fails to accept archives created with the zip command. Having to create archives manually is preventing me from fully automating my release build process.

How can I create a zip archive in the correct format within a shell script?

EDIT: Since writing this question long ago, I've figured out that the key difference between ditto and zip is how they handle symbolic links: because the code signature inside an app bundle contains a symlink, it needs to be preserved as a link and not stored as a regular file. ditto does this by default, but zip does not (option -y is required).

4条回答
叛逆
2楼-- · 2020-02-09 00:32

I have a ruby script that makes iPhone App Store builds for me, but the zips it was generating wouldn't get accepted by iTunes Connect. They were accepted if I used Finder's "Compress" function.

millenomi's answer came close for me, but this command is what ended up working. iTunes Connect accepted my build, and the app got approved and can be downloaded no problem, so it's tested.

ditto -c -k --sequesterRsrc --keepParent AppName.app AppName.zip
查看更多
萌系小妹纸
3楼-- · 2020-02-09 00:50

The clue's in the tag 'automation'.

Create an action in Automator.app that uses the 'Create Archive' action, invoke it from the command-line (see 'automator').

查看更多
混吃等死
4楼-- · 2020-02-09 00:52

man ditto states:

 The command:
       ditto -c -k --sequesterRsrc --keepParent src_directory archive.zip
 will create a PKZip archive similarly to the Finder's Compress functionality.

notice --keepParent

查看更多
兄弟一词,经得起流年.
5楼-- · 2020-02-09 00:56

Use the ditto command-line tool as follows:

ditto -ck --rsrc --sequesterRsrc folder file.zip

See the ditto man page for more.

查看更多
登录 后发表回答