diff --git a/.github/workflows/AppRun b/.github/workflows/AppRun index fc1a71511..5abdbc969 100644 --- a/.github/workflows/AppRun +++ b/.github/workflows/AppRun @@ -7,8 +7,11 @@ mkdir -p $HOME/.local/share/icons/hicolor/scalable/apps && cp $APPDIR/yuzu.svg $ GITVER=`wget -qO- https://www.github.com/pineappleEA/pineapple-src/releases/tag/continuous | grep pineappleEA/pineapple-src/commit/ | cut -d '"' -f 2 | cut -d '/' -f 5 | awk '!x[$0]++'` APPVER=`cat $APPDIR/version.txt` -if [ "$GITVER" = "$APPVER" ]; then +if [[ -z "$GITVER" ]]; then + $APPDIR/usr/bin/yuzu +elif [ "$GITVER" = "$APPVER" ]; then $APPDIR/usr/bin/yuzu else $APPDIR/update.sh fi +