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-05 20:26:24 +01:00
parent b28e5f3c9a
commit f54f718871
+2 -2
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() {