This is a bug with Lion. When files are downloaded, a quarantine flag will be set on the file. After launching it, the OS is supposed to remove the flag. Unfortunately, Lion has a bug where it doesn't work some of the time. You can strip it off yourself via the commandline.
WARNING: DO NOT ATTEMPT UNLESS YOU ARE COMFORTABLE USING THE COMMANDLINE AND/OR HAVE GOOD BACKUPSIf you have Hazel installed just for your account, you can use the following command:
- Code: Select all
find ~/Library/PreferencePanes/Hazel.prefPane -exec xattr -d com.apple.quarantine {} \;
If you have it installed systemwide, the command is different. It will ask you for your admin password since you are modifying something installed at the system level:
- Code: Select all
sudo find /Library/PreferencePanes/Hazel.prefPane -exec xattr -d com.apple.quarantine {} \;