Skip to content

Instantly share code, notes, and snippets.

@phoenixthrush
Created April 23, 2024 20:24
Show Gist options
  • Save phoenixthrush/c105862b890e16a7e2e1feab43174002 to your computer and use it in GitHub Desktop.
Save phoenixthrush/c105862b890e16a7e2e1feab43174002 to your computer and use it in GitHub Desktop.
Clearing the com.apple.quarantine extended attribute
// By using this command you’re removing the com.apple.quarantine extended attribute from the application.
// The -r flag removes the attribute recursively from all files inside the application,
// and the -d flag indicates the given attribute is to be removed.
sudo xattr -r -d com.apple.quarantine /path/to/application.app/or/binary
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment