Files
2022-06-12 18:37:52 +02:00

11 lines
221 B
Bash
Executable File

{{ shebang }}
# If running from an extracted image, then export APPDIR
if [ -z "${APPIMAGE}" ]; then
self="$(readlink -f -- $0)"
export APPDIR="${self%/*}"
fi
# Call the application entry point
{{ entrypoint }}