apprun.sh 209 B

123456789
  1. #! /bin/bash
  2. # Export APPRUN if running from an extracted image
  3. self="$(readlink -f -- $0)"
  4. here="${self%/*}"
  5. APPDIR="${APPDIR:-${here}}"
  6. # Call the python wrapper
  7. "${APPDIR}/usr/bin/python{{version}}" "$@"