## On macOS, the applications must have the quarantine attribute removed (Intel) and/or be code-signed (Apple Silicon).


### To remove the quarantine attribute, use:
```
xattr -r -d com.apple.quarantine Application.app
```

### To sign the application, use:
```
codesign --force --deep --sign - Application.app
```
