Still not there, but have a different result. I’m still using
carljmosca/netbeans-macos-bundle:
NetBeans installation script for Mac OS X (github.com)
<https://github.com/carljmosca/netbeans-macos-bundle>. After downloading
the code, I modified install.sh. After the netbeans download, I added xattr
to downloaded zip.
.
.
.
echo "Unpacking Netbeans archive..."
*xattr -dr com.apple.quarantine "${TMPFILE}"*
${SUDO_COMMAND}unzip ${QUIETUNZIP} "${TMPFILE}" -d
"${INSTALL_DIR}/NetBeans/Apache NetBeans
${NETBEANS_VERSION}.app/Contents/Resources/“
.
.
.
Now when I try to open an existing project, I get, “project is not a valid
Netbeans project.”
Might just have to wait for MacOS installer.
On 2022/03/06 17:16:59 Giles Winstanley wrote:
The downloaded zip file would likely be flagged by macOS as quarantined,
so it's very likely needs the flag removed for the application to
function as expected. This can either be done on the zip file before
unzipping, or on the contents afterwards.
xattr -r -d com.apple.quarantine <path to Netbeans folder>
Clearly you need to have trust in the contents of the folder to take
this avenue, so I'm assuming the PGP/SHA checks have been done as
appropriate. Once the quarantine flag is removed it should hopefully be
back working as expected, although since you've already tried opening
the application previously, it's probably worth giving it a fresh start
before launch by deleting the new configuration it made and letting it
import from a previous version as needed:
rm -rf "$HOME/Library/Application Support/NetBeans/13"
Hope that helps,
Stan
On 2022/03/06 17:16:59 Giles Winstanley wrote:
The downloaded zip file would likely be flagged by macOS as quarantined,
so it's very likely needs the flag removed for the application to
function as expected. This can either be done on the zip file before
unzipping, or on the contents afterwards.
xattr -r -d com.apple.quarantine
Clearly you need to have trust in the contents of the folder to take
this avenue, so I'm assuming the PGP/SHA checks have been done as
appropriate. Once the quarantine flag is removed it should hopefully be
back working as expected, although since you've already tried opening
the application previously, it's probably worth giving it a fresh start
before launch by deleting the new configuration it made and letting it
import from a previous version as needed:
rm -rf "$HOME/Library/Application Support/NetBeans/13"
Hope that helps,
Stan