diff options
author | Tobias Kellner <tobias.kellner@iaik.tugraz.at> | 2012-11-14 13:17:54 +0100 |
---|---|---|
committer | Tobias Kellner <tobias.kellner@iaik.tugraz.at> | 2012-11-14 13:17:54 +0100 |
commit | 5a823a3df1bf1a37ebd03cbc6f31187317fa5142 (patch) | |
tree | f851444445b47625b91fcaba10b03d00e18b9649 | |
parent | 0fab4f2e2e720304adafd149deea325b5fb9b86b (diff) | |
download | pdf-over-5a823a3df1bf1a37ebd03cbc6f31187317fa5142.tar.gz pdf-over-5a823a3df1bf1a37ebd03cbc6f31187317fa5142.tar.bz2 pdf-over-5a823a3df1bf1a37ebd03cbc6f31187317fa5142.zip |
mac-script: start java in background so terminal closes
-rw-r--r-- | trunk/pdf-over-gui/src/main/resources/scripts/pdfover_mac.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/trunk/pdf-over-gui/src/main/resources/scripts/pdfover_mac.sh b/trunk/pdf-over-gui/src/main/resources/scripts/pdfover_mac.sh index 95e982ea..0a226ef5 100644 --- a/trunk/pdf-over-gui/src/main/resources/scripts/pdfover_mac.sh +++ b/trunk/pdf-over-gui/src/main/resources/scripts/pdfover_mac.sh @@ -1,3 +1,3 @@ #!/bin/sh BASEDIR=$(cd "$(dirname "$0")"; pwd) -(cd $BASEDIR/PDF-Over && exec java -XstartOnFirstThread -cp "lib/*" at.asit.pdfover.gui.Main "$@") +(cd $BASEDIR/PDF-Over && exec java -XstartOnFirstThread -cp "lib/*" at.asit.pdfover.gui.Main "$@" &) |