pineapple-src/.github/workflows/AppRun

18 lines
485 B
Plaintext
Raw Normal View History

2020-12-29 18:45:46 +00:00
#!/bin/bash
2020-12-31 22:17:16 +00:00
export QT_QPA_PLATFORMTHEME=gtk3
2020-12-29 18:45:46 +00:00
mkdir -p $HOME/.local/share/icons/hicolor/scalable/apps && cp $APPDIR/yuzu.svg $HOME/.local/share/icons/hicolor/scalable/apps
GITVER=`wget -qO- https://api.github.com/repos/pineappleEA/pineapple-src/releases/latest | grep "releases/tag" | grep -o 'EA-[[:digit:]]*'`
2020-12-29 18:45:46 +00:00
APPVER=`cat $APPDIR/version.txt`
if [[ -z "$GITVER" ]]; then
$APPDIR/usr/bin/yuzu
elif [ "$GITVER" = "$APPVER" ]; then
2020-12-29 18:45:46 +00:00
$APPDIR/usr/bin/yuzu
else
$APPDIR/update.sh
fi