mirror of
https://github.com/mitb-archive/filebot
synced 2024-11-07 18:05:04 -05:00
9 lines
669 B
Bash
9 lines
669 B
Bash
|
#!/bin/bash
|
||
|
SOURCE="${BASH_SOURCE[0]}"
|
||
|
while [ -h "$SOURCE" ] ; do SOURCE="$(readlink "$SOURCE")"; done
|
||
|
SOURCE="$( cd -P "$( dirname "$SOURCE" )" && pwd )"
|
||
|
|
||
|
APP_ROOT="$SOURCE/../.."
|
||
|
|
||
|
java -XX:+TieredCompilation -Djava.awt.headless=true -Dunixfs=false -DuseExtendedFileAttributes=true -DuseCreationDate=false -Djava.net.useSystemProxies=true -Dsun.net.client.defaultConnectTimeout=10000 -Dsun.net.client.defaultReadTimeout=60000 -Djna.nosys=true -Dapplication.deployment=app "-Djna.library.path=$APP_ROOT/Contents/MacOS" "-Djava.library.path=$APP_ROOT/Contents/MacOS" "-Dnet.filebot.AcoustID.fpcalc=$APP_ROOT/Contents/MacOS/fpcalc" -jar "$APP_ROOT"/Contents/Java/* "$@"
|