appimage-run: don't chdir to the appimage

this allows to pass relative paths to appimages as argument

fixes #108426
This commit is contained in:
Guillaume Girol 2021-01-04 12:00:00 +00:00
parent b28e5f3c9a
commit f54f718871

View file

@ -75,15 +75,15 @@ apprun() {
wrap() { wrap() {
cd "$APPDIR" || exit
# quite same in appimageTools # quite same in appimageTools
export APPIMAGE_SILENT_INSTALL=1 export APPIMAGE_SILENT_INSTALL=1
if [ -n "$APPIMAGE_DEBUG_EXEC" ]; then if [ -n "$APPIMAGE_DEBUG_EXEC" ]; then
cd "$APPDIR" || true
exec "$APPIMAGE_DEBUG_EXEC" exec "$APPIMAGE_DEBUG_EXEC"
fi fi
exec ./AppRun "$@" exec "$APPDIR/AppRun" "$@"
} }
usage() { usage() {