Closed juzeon closed 7 years ago
This might be due to recent changes requiring you to run mono32
instead of mono
.
Sounds like your change will work for you. It would be nice if the RunOnMac.command
could check which of mono32
and mono
existed and use the one that did, but I'm not familiar enough to with bash to know how to state such a thing.
Fixed by #22.
After installing the latest mono on osx(el capitan) and running the shell
RunOnMac.command
, the console showed an error likeexec: mono: not found
.I changed the line 4 intoexec /Library/Frameworks/Mono.framework/Commands/mono32 "Desktop Ponies.exe" "$@"
and the it worked properly. Is it an problem?