Skip to content
This repository has been archived by the owner on Dec 29, 2023. It is now read-only.

Commit

Permalink
Fix exec error on using AppImages in directories containing spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
srevinsaju committed Sep 2, 2020
1 parent de7bf21 commit 843de2f
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions appimage/entrypoint.sh
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
export GUISCRCPY_SCRCPY=${APPDIR}/usr/bin/scrcpy
export GUISCRCPY_ADB=${APPDIR}/usr/bin/adb
export SCRCPY_SERVER_PATH=${APPDIR}/usr/local/share/scrcpy/scrcpy-server
export ADB=${APPDIR}/usr/bin/adb
export GUISCRCPY_SCRCPY="${APPDIR}/usr/bin/scrcpy"
export GUISCRCPY_ADB="${APPDIR}/usr/bin/adb"
export SCRCPY_SERVER_PATH="${APPDIR}/usr/local/share/scrcpy/scrcpy-server"
export ADB="${APPDIR}/usr/bin/adb"
export GUISCRCPY_APPIMAGE=True
export PATH=${APPDIR}/usr/bin:${PATH}
export PATH="${APPDIR}/usr/bin:${PATH}"

{{ python-executable }} -s ${APPDIR}/opt/python{{ python-version }}/bin/guiscrcpy "$@"
"{{ python-executable }}" -s "${APPDIR}/opt/python{{ python-version }}/bin/guiscrcpy" "$@"

0 comments on commit 843de2f

Please sign in to comment.