i made a script that unblocks unity apps on macs
if [ -d "$1" ]; then
file=$( ls $1/Contents/MacOS )
chmod +x "$1/Contents/MacOS/${file[0]}"
xattr -r -d com.apple.quarantine $1
elif [ "$1" = "about" ]; then
echo "a lazy tool made for unblocking unity apps on Macs."
echo "made by ezrashare21"
elif [ ! -d "$1" ]; then
echo "could not find file"
else
echo "error"
fi