mirror of
https://github.com/niess/python-appimage.git
synced 2026-03-14 20:30:13 +01:00
11 lines
221 B
Bash
Executable File
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 }}
|