Skip to content

Instantly share code, notes, and snippets.

View tugloo1's full-sized avatar

Piyush Gupta tugloo1

View GitHub Profile
@JScott
JScott / unxip.scpt
Created September 16, 2016 16:41
For unarchiving Apple's bad decisions
-- 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