From fc4662bd930c93af124e37ec870a66efd39dd33f Mon Sep 17 00:00:00 2001 From: Valentin Niess Date: Mon, 20 Apr 2020 20:52:56 +0200 Subject: [PATCH] Patching the default exec name for python images --- python_appimage/data/entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python_appimage/data/entrypoint.sh b/python_appimage/data/entrypoint.sh index a064c99..05e8a48 100755 --- a/python_appimage/data/entrypoint.sh +++ b/python_appimage/data/entrypoint.sh @@ -11,7 +11,7 @@ done # Get the executable name, i.e. the AppImage or the python binary if running from an # extracted image -executable="${APPDIR}/opt/{{ python }}/{{ python }}" +executable="${APPDIR}/opt/{{ python }}/bin/{{ python }}" if [[ "${ARGV0}" =~ "/" ]]; then executable="$(cd $(dirname ${ARGV0}) && pwd)/$(basename ${ARGV0})" elif [[ "${ARGV0}" != "" ]]; then