mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2024-11-22 05:45:38 +00:00
AppImage: Fix launching relative paths
This commit is contained in:
parent
819b27a1a1
commit
a5585f047c
|
@ -292,8 +292,8 @@ echo "Creating AppRun..."
|
||||||
cat > "$OUTDIR/AppRun" << EOF
|
cat > "$OUTDIR/AppRun" << EOF
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
cd "\$(dirname "\$0")"
|
APPDIR=\$(dirname "\$0")
|
||||||
exec ./usr/bin/$BINARY "\$@"
|
exec "\$APPDIR/usr/bin/$BINARY" "\$@"
|
||||||
EOF
|
EOF
|
||||||
chmod +x "$OUTDIR/AppRun"
|
chmod +x "$OUTDIR/AppRun"
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue