yuzu/.github/workflows/AppRun

15 lines
454 B
Plaintext
Raw Normal View History

2020-12-29 22:45:46 +04:00
#!/bin/bash
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 22:45:46 +04:00
APPVER=`cat $APPDIR/version.txt`
if [[ -z "$GITVER" ]]; then
2021-07-11 03:19:20 +04:00
$APPDIR/AppRun-patched
elif [ "$GITVER" = "$APPVER" ]; then
2021-07-11 03:19:20 +04:00
$APPDIR/AppRun-patched
2020-12-29 22:45:46 +04:00
else
$APPDIR/update.sh
fi