For unarchiving Apple's bad decisions
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- http://stackoverflow.com/questions/37812664/end-of-central-directory-signature-not-found-when-installing-xcode-8-beta-xip/37857162#37857162 | |
on run argv | |
tell application "Archive Utility" to open POSIX path of (item 1 of argv) | |
repeat | |
delay 5 | |
if application "Archive Utility" is not running then exit repeat | |
end repeat | |
end run |
open -FWga "Archive Utility" --args ./Xcode.xip
is more efficient
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks. This script helped us a lot.