pineapple-src/.github/workflows/AppRun

19 lines
696 B
Plaintext
Raw Permalink Normal View History

2020-12-29 13:45:46 -05:00
#!/bin/bash
2021-07-29 18:15:03 -04: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 13:45:46 -05:00
mkdir -p $HOME/.local/share/icons/hicolor/scalable/apps && cp $APPDIR/yuzu.svg $HOME/.local/share/icons/hicolor/scalable/apps
2022-04-16 09:49:06 -04:00
GITURL='https://api.github.com/repos/pineappleEA/pineapple-src/releases/latest'
2022-04-15 18:59:36 -04:00
GITVER=`( wget -qO- $GITURL 2>/dev/null || curl -sL $GITURL ) | grep "EA-" | grep -o 'EA-[[:digit:]]*'`
2020-12-29 13:45:46 -05:00
APPVER=`cat $APPDIR/version.txt`
if [[ -z "$GITVER" ]]; then
2022-04-11 23:12:38 -04:00
$APPDIR/AppRun-patched "$@"
elif [ "$GITVER" = "$APPVER" ]; then
2022-04-11 23:12:38 -04:00
$APPDIR/AppRun-patched "$@"
2020-12-29 13:45:46 -05:00
else
2022-04-11 23:12:38 -04:00
$APPDIR/update.sh "$@"
2020-12-29 13:45:46 -05:00
fi