Page 1 of 1

Friend cannot start the client on a Mac

PostPosted: 10 Nov 2011, 13:13
by Ginolard
Posting on behalf of a friend who has a Macbook. He can start the server part and sees "Listening" message but he says that when he tries to start the client it just exits immediately.

Is this is a known issue? If so, is there a fix?

Re: Friend cannot start the client on a Mac

PostPosted: 11 Nov 2011, 08:58
by nantuko84
Don't know, we have no Mac to test. But we were reported that everything works on MacOS.

Did you run with .command script?

Re: Friend cannot start the client on a Mac

PostPosted: 11 Nov 2011, 09:03
by nantuko84
I found the reason (and it was already fixed in trunk but will be available in next release)

Meanwhile what you should do is change the script a little
from
Code: Select all
#!/bin/sh

cd "`dirname "$0"`"

java -jar ./lib/mage-client-0.8.jar -Xms256M -Xmx1024M &
to (replacing -0.8.jar by -0.8.1.jar)

Code: Select all
#!/bin/sh

cd "`dirname "$0"`"

java -jar ./lib/mage-client-0.8.1.jar -Xms256M -Xmx1024M &