I am running armidale on Windows (silly me, I know).
When I use 'java -jar jars/armidale.jar' to start the launcher I get the following message:
"Unable to find required jar file 'armidale.jar'"
What's wrong?
Logged In: YES user_id=306335
The problem is that you used the Unix '/' file separator instead on the Windows '\'.
While Java can handle both forms, armidale only looks for the current platform file separator (ie. / on unix and \ on windows).
So the solution is to use the correct file separator for your platform. eg. on windows use:
java -jar jars\armidale.jar
Armidale 0.9.5 will handle / and \, as well as the current platform separator.
Log in to post a comment.
Logged In: YES
user_id=306335
The problem is that you used the Unix '/' file separator instead on the Windows '\'.
While Java can handle both forms, armidale only looks for the current platform file separator (ie. / on unix and \ on windows).
So the solution is to use the correct file separator for your platform. eg. on windows use:
java -jar jars\armidale.jar
Armidale 0.9.5 will handle / and \, as well as the current platform separator.