Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags
(+1)

'You do not have permission to open this file' :(

(+1)

go to terminal type "chmod 755" and drag the muck file in after that

(+1)

Or use a file manager->properties->permissions

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