I suppose it could just be some security crap Corp IT installed on my laptop preventing it from installing.
It looks like it's only taking up 7.9MB in my Applications folder so it must be corrupt or something.
I suppose it could just be some security crap Corp IT installed on my laptop preventing it from installing.
It looks like it's only taking up 7.9MB in my Applications folder so it must be corrupt or something.
``` cd /Applications/DBeaver.app/; ls -@l ```
And then if you see some extended attributes like quarantine and provenance, you can remove them
``` xattr -d com.apple.provenance DBWeaver.app/; xattr -d com.apple.quarantine DBWeaver.app/ ```
I've got this wrong in the past by adding the README too late in the process. Once I'd fixed that, the reason macOS gives for not opening my app became that Apple can't check it for malicious software. Much better... I think? The right click/open workaround does work.
`xattr -r -d com.apple.quarantine /Applications/Pragtical.app`
-d is delete -r is recursive
Hopefully, Apple won't lock it down further.