diff options
Diffstat (limited to 'pdf-over-gui/src/main/resources/scripts')
-rw-r--r-- | pdf-over-gui/src/main/resources/scripts/pdf-over_mac.sh | 2 | ||||
-rw-r--r-- | pdf-over-gui/src/main/resources/scripts/postinstall_mac.sh | 7 |
2 files changed, 8 insertions, 1 deletions
diff --git a/pdf-over-gui/src/main/resources/scripts/pdf-over_mac.sh b/pdf-over-gui/src/main/resources/scripts/pdf-over_mac.sh index e4cd4722..8ae4abb1 100644 --- a/pdf-over-gui/src/main/resources/scripts/pdf-over_mac.sh +++ b/pdf-over-gui/src/main/resources/scripts/pdf-over_mac.sh @@ -1,4 +1,4 @@ #!/bin/sh BASEDIR=$(cd "$(dirname "$0")"; pwd) export LC_CTYPE="UTF-8" -(cd "$BASEDIR/PDF-Over" && exec java -XstartOnFirstThread -cp "lib/*" at.asit.pdfover.gui.Main "$@" &) +(cd "$BASEDIR/.." && exec java -XstartOnFirstThread -cp "lib/*" at.asit.pdfover.gui.Main "$@" &) diff --git a/pdf-over-gui/src/main/resources/scripts/postinstall_mac.sh b/pdf-over-gui/src/main/resources/scripts/postinstall_mac.sh new file mode 100644 index 00000000..76d860cf --- /dev/null +++ b/pdf-over-gui/src/main/resources/scripts/postinstall_mac.sh @@ -0,0 +1,7 @@ +#!/bin/sh +BASEDIR=$(cd "$(dirname "$0")"; pwd) +export LC_CTYPE="UTF-8" +cd "$BASEDIR" +chmod a+x pdf-over_mac.sh +cd .. +osacompile -e "do shell script \"$BASEDIR/pdf-over_mac.sh\"" -x -o PDF-Over.app |