7 lines
364 B
Bash
Executable File
7 lines
364 B
Bash
Executable File
#!/bin/sh
|
|
# Launcher for the self-contained werkator runtime bundle (jlink JRE + jar).
|
|
# Built by `./gradlew runtimeBundle`; see docs/deployment.md.
|
|
DIR=$(CDPATH='' cd -- "$(dirname -- "$(readlink -f -- "$0")")" && pwd)
|
|
# shellcheck disable=SC2086 # JAVA_OPTS is intentionally word-split
|
|
exec "$DIR/../jre/bin/java" $JAVA_OPTS -jar "$DIR/../lib/werkator.jar" "$@"
|