소스 검색

Patching the default exec name for python images

Valentin Niess 5 년 전
부모
커밋
fc4662bd93
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      python_appimage/data/entrypoint.sh

+ 1 - 1
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