Pass commandline variables to yuzu
This commit is contained in:
parent
1991631787
commit
90515af569
1 changed files with 3 additions and 3 deletions
6
.github/workflows/AppRun
vendored
6
.github/workflows/AppRun
vendored
|
@ -9,9 +9,9 @@ GITVER=`wget -qO- https://api.github.com/repos/pineappleEA/pineapple-src/release
|
||||||
APPVER=`cat $APPDIR/version.txt`
|
APPVER=`cat $APPDIR/version.txt`
|
||||||
|
|
||||||
if [[ -z "$GITVER" ]]; then
|
if [[ -z "$GITVER" ]]; then
|
||||||
$APPDIR/AppRun-patched
|
$APPDIR/AppRun-patched "$@"
|
||||||
elif [ "$GITVER" = "$APPVER" ]; then
|
elif [ "$GITVER" = "$APPVER" ]; then
|
||||||
$APPDIR/AppRun-patched
|
$APPDIR/AppRun-patched "$@"
|
||||||
else
|
else
|
||||||
$APPDIR/update.sh
|
$APPDIR/update.sh "$@"
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in a new issue