Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

Tales of Androgyny

A game about birds, bees, flowers and trees. · By Majalis

MAC Issue

A topic by Silver_Crow created Apr 27, 2021 Views: 376 Replies: 1
Viewing posts 1 to 2

I'm trying to unpack it on Mac however both extractor lead to it being broken. when I do open it all I get is it can't be opened? can someone help?

(11 edits)

The application cannot open due to missing (the execution flag) permissions (Windows has its own permissions which overrides any existing Unix permissions). In other words, the internal executable file(s) are no longer seen as an executable

First make sure the jre is compatible with your OS (last time I checked it's the Windows variant) via here (click download and do 6-12), afterwards run this in the Terminal application aka select code -> copy code -> click on Terminal app or window -> paste -> hit enter key (unless you took the manual approach which in that case you can ignore this part)

printf "\nSelect the application that cannot open\n\n"; a="$(osascript -e 'POSIX path of (choose file default location (path to downloads folder) of type "APPL" with prompt "Select the application that cannot open")')"; if [[ $? -eq 0 ]]; then printf "(Re)Applying the execution permission to executable files..."; while read f; do if [[ "$(file -b "$f")" =~ "Mach-O 64-bit executable x86_64" ]]; then chmod +x "$f"; fi; done < <(find "$a"); if [[ $? -eq 0 ]]; then printf "done\n"; printf "\nRemoving extended attribute com.apple.quarantine from app..."; if [[ "$(xattr "$a")" =~ "com.apple.quarantine" ]]; then xattr -r -d com.apple.quarantine "$a"; printf "done\n"; else printf "already removed\n"; fi; printf "\nPlease wait until application launches..."; open "$a"; printf "done\n"; fi; fi; printf "\n"