Quote:
Originally Posted by nbcello
So I cannot for the life of me figure out how to run this thing on my mac. I've downloaded the latest Java Developer Kit. I dragged the run.sh file into terminal and got an error saying "unable to access OOTPschedulegenerator.jar". So I edited the run.sh to include the file path. This time I get a bunch of computer gibberish preceded by "Exception in thread "main" java.io.FileNotFoundException: ./settings.ini (No such file or directory)".
What the hell gives? It's so frustrating fighting my computer to try to get it to run stuff like this, but I guess that's the price I pay for being a mac person. If only I weren't a musician.
|
On looking, I've discovered that Mac shell scripts execute in the home directory, not the directory they're in.
You should be able to make it work by either adding
cd your-install-directory
above the Java line, or by doing the full path to settings.ini like you did for the jar file.