On 02.12.2008, at 15:43, Jeff Johnson wrote:

Then I logged out and logged back in. This provides a permanent solution to the dialog problem, not only for Xcode docs but in general. If you want a more specific solution, try this:

sudo find /Developer/Documentation/DocSets -exec xattr -d com.apple.quarantine {} \;

Unfortunately, it could take hours to complete, and you'll have to repeat every time you download a docset update.


A faster way to achieve this is to use xargs with find:
Note that 'sudo' has to be part of the xargs command.

find /Developer/Documentation/DocSets -type f -print0 | xargs -0 sudo xattr -d com.apple.quarantine

Regards
Patrick
_______________________________________________

Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com

This email sent to [EMAIL PROTECTED]

Reply via email to