Created
April 9, 2013 12:53
-
-
Save atd-schubert/5345483 to your computer and use it in GitHub Desktop.
Solution for starting ArgoUML in Mac OSX Mountain Lion
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" | |
echo "Starting with Mountain Lion start helper" | |
$DIR/JavaApplicationStub & |
symlink creations as suggested through https://oliverdowling.com.au/2014/03/28/java-se-8-on-mac-os-x/ did work for me.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Relative to where you extracted the application, check the ./ArgoUML/Contents/MacOS/JavaApplicationStub (or ./ArgoUML.app/Contents/MacOS/JavaApplicationStub) file permissions. This is the file the Info.plist is launching by default. The problem seems to be simply that execute permission isn't on this executable when it is extracted. Adding it (chmod +x JavaApplicationStub) fixed the application launching every time I tested it.