#!/usr/bin/env bash # AppImage entry point. AppImage mounts the bundle and runs this # script. We chdir into the embedded usr/bin so the PyInstaller # bundle's relative paths resolve, then exec the launcher binary. set -e HERE="$(dirname -- "$(readlink -f -- "${0}")")" exec "${HERE}/usr/bin/DataTools/DataTools" "$@"