From 702d42abe8ac3c8fe716207217a0a9d9da3ebc30 Mon Sep 17 00:00:00 2001 From: qurious-pixel <62252937+qurious-pixel@users.noreply.github.com> Date: Sat, 10 Jul 2021 16:19:56 -0700 Subject: [PATCH] gcc-11 --- .github/workflows/update.sh | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/update.sh b/.github/workflows/update.sh index bd5f3b765..af208f67e 100644 --- a/.github/workflows/update.sh +++ b/.github/workflows/update.sh @@ -1,15 +1,13 @@ #!/bin/bash -export QT_QPA_PLATFORMTHEME=gtk3 - zenity --question --timeout=10 --title="yuzu updater" --text="New update available. Update now?" --icon-name=yuzu --window-icon=yuzu.svg --height=80 --width=400 answer=$? if [ "$answer" -eq 0 ]; then $APPDIR/usr/bin/AppImageUpdate $PWD/yuzu-x86_64.AppImage && $PWD/yuzu-x86_64.AppImage elif [ "$answer" -eq 1 ]; then - $APPDIR/usr/bin/yuzu + $APPDIR/AppRun-patched elif [ "$answer" -eq 5 ]; then - $APPDIR/usr/bin/yuzu + $APPDIR/AppRun-patched fi exit 0