pineapple-src/.github/workflows/AppRun

19 lines
696 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
2022-04-16 13:49:06 +00:00
GITURL='https://api.github.com/repos/pineappleEA/pineapple-src/releases/latest'
2022-04-15 22:59:36 +00:00
GITVER=`( wget -qO- $GITURL 2>/dev/null || curl -sL $GITURL ) | grep "EA-" | grep -o 'EA-[[:digit:]]*'`
2020-12-29 18:45:46 +00:00
APPVER=`cat $APPDIR/version.txt`
if [[ -z "$GITVER" ]]; then
2022-04-12 03:12:38 +00:00
$APPDIR/AppRun-patched "$@"
elif [ "$GITVER" = "$APPVER" ]; then
2022-04-12 03:12:38 +00:00
$APPDIR/AppRun-patched "$@"
2020-12-29 18:45:46 +00:00
else
2022-04-12 03:12:38 +00:00
$APPDIR/update.sh "$@"
2020-12-29 18:45:46 +00:00
fi