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() {
cd "$APPDIR" || exit
# quite same in appimageTools
export APPIMAGE_SILENT_INSTALL=1
if [ -n "$APPIMAGE_DEBUG_EXEC" ]; then
cd "$APPDIR" || true
exec "$APPIMAGE_DEBUG_EXEC"
fi
exec ./AppRun "$@"
exec "$APPDIR/AppRun" "$@"
}
usage() {