AppImage: Don't change current working directory

This commit is contained in:
Connor McLaughlin
2022-11-25 18:31:17 +10:00
committed by refractionpcsx2
parent 498fe48255
commit db8fb7f5a3

View File

@@ -1,4 +1,4 @@
#!/bin/sh
cd "$(dirname "$0")"
exec ./usr/bin/pcsx2-qt "$@"
APPDIR=$(dirname "$0")
exec "$APPDIR/usr/bin/pcsx2-qt" "$@"