From 90515af569a21d3e899309f19c250827fb768ac3 Mon Sep 17 00:00:00 2001 From: qurious-pixel <62252937+qurious-pixel@users.noreply.github.com> Date: Mon, 11 Apr 2022 20:12:38 -0700 Subject: [PATCH] Pass commandline variables to yuzu --- .github/workflows/AppRun | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/AppRun b/.github/workflows/AppRun index ef2fc85c7..40d3e9a76 100644 --- a/.github/workflows/AppRun +++ b/.github/workflows/AppRun @@ -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