pineapple-src/.github/workflows/AppRun

18 lines
727 B
Plaintext
Raw Normal View History

2020-12-29 18:45:46 +00:00
#!/bin/bash
2021-07-29 22:15:03 +00:00
export GDK_PIXBUF_MODULEDIR=$(pkg-config --variable=gdk_pixbuf_moduledir gdk-pixbuf-2.0)
export GDK_PIXBUF_MODULE_FILE=$(pkg-config --variable=gdk_pixbuf_cache_file gdk-pixbuf-2.0)
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 2>/dev/null || curl -sL https://api.github.com/repos/pineappleEA/pineapple-src/releases/latest ) | grep "EA-" | grep -o 'EA-[[:digit:]]*'`
2020-12-29 18:45:46 +00:00
APPVER=`cat $APPDIR/version.txt`
if [[ -z "$GITVER" ]]; then
2021-07-10 23:19:20 +00:00
$APPDIR/AppRun-patched
elif [ "$GITVER" = "$APPVER" ]; then
2021-07-10 23:19:20 +00:00
$APPDIR/AppRun-patched
2020-12-29 18:45:46 +00:00
else
$APPDIR/update.sh
fi