From 0925b6cfdb45d8413b788d10199e814b0b915681 Mon Sep 17 00:00:00 2001 From: qurious-pixel <62252937+qurious-pixel@users.noreply.github.com> Date: Mon, 11 Apr 2022 20:13:36 -0700 Subject: [PATCH] Pass commandline variables to yuzu --- .github/workflows/update.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/update.sh b/.github/workflows/update.sh index af208f67e..a80bf9fdc 100644 --- a/.github/workflows/update.sh +++ b/.github/workflows/update.sh @@ -4,10 +4,10 @@ zenity --question --timeout=10 --title="yuzu updater" --text="New update availab answer=$? if [ "$answer" -eq 0 ]; then - $APPDIR/usr/bin/AppImageUpdate $PWD/yuzu-x86_64.AppImage && $PWD/yuzu-x86_64.AppImage + $APPDIR/usr/bin/AppImageUpdate $PWD/yuzu-x86_64.AppImage && $PWD/yuzu-x86_64.AppImage "$@" elif [ "$answer" -eq 1 ]; then - $APPDIR/AppRun-patched + $APPDIR/AppRun-patched "$@" elif [ "$answer" -eq 5 ]; then - $APPDIR/AppRun-patched + $APPDIR/AppRun-patched "$@" fi exit 0