pineapple/.github/workflows/AppRun

19 lines
696 B
Text
Raw Permalink Normal View History

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