Skip to content

Instantly share code, notes, and snippets.

@donfrancisco
Last active January 6, 2020 17:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save donfrancisco/facba8899bf17794f31a48443dc4c928 to your computer and use it in GitHub Desktop.
Save donfrancisco/facba8899bf17794f31a48443dc4c928 to your computer and use it in GitHub Desktop.
Catalina macOS 10.15: "Skype" can't be opened because Apple can't verify if it contains malware.

There are two tips you can use to make using development tools on MacOS Catalina with Gatekeeper a bit easier.

1) Quarantine removal

The first tip is to remove quarantine flag in a recursive manner for your intended folder:

$ sudo xattr -r -d com.apple.quarantine /path/to/folder

The command will recursively delete the extended attribute (xattr) of com.apple.quarantine attribute recursively to the files in the folder.

The (-r) option will allow the quarantine attribute of all files inside the application to be selected, while the (-d) deletes the extended attribute name.

You can find more information in the extended attributes (xattr) help page:

$ xattr -h

2) Terminal "Privacy"

The second tip is setting the Terminal "privacy".

System Preferences -> Security & Privacy -> Privacy and select "Developer Tools" on the left, and add terminal to allow.

This step allows the Terminal app to run software locally that does not meet the system's security policy.

terminal privacy

Apple Support Reference:

Safely open apps on your Mac

https://support.apple.com/en-us/HT202491

@donfrancisco
Copy link
Author

developer-tools-privacy

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment