Pass commandline variables to yuzu

This commit is contained in:
qurious-pixel 2022-04-11 20:12:38 -07:00 committed by GitHub
parent 1991631787
commit 90515af569
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -9,9 +9,9 @@ GITVER=`wget -qO- https://api.github.com/repos/pineappleEA/pineapple-src/release
APPVER=`cat $APPDIR/version.txt`
if [[ -z "$GITVER" ]]; then
$APPDIR/AppRun-patched
$APPDIR/AppRun-patched "$@"
elif [ "$GITVER" = "$APPVER" ]; then
$APPDIR/AppRun-patched
$APPDIR/AppRun-patched "$@"
else
$APPDIR/update.sh
$APPDIR/update.sh "$@"
fi