Skip to main content

On Sale: GamesAssetsToolsTabletopComics
Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

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