forked from etc/pineapple-src
gcc-11
This commit is contained in:
parent
914ae5e75e
commit
a567537688
1 changed files with 2 additions and 5 deletions
7
.github/workflows/AppRun
vendored
7
.github/workflows/AppRun
vendored
|
@ -1,17 +1,14 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
export QT_QPA_PLATFORMTHEME=gtk3
|
|
||||||
|
|
||||||
mkdir -p $HOME/.local/share/icons/hicolor/scalable/apps && cp $APPDIR/yuzu.svg $HOME/.local/share/icons/hicolor/scalable/apps
|
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:]]*'`
|
GITVER=`wget -qO- https://api.github.com/repos/pineappleEA/pineapple-src/releases/latest | grep "releases/tag" | grep -o 'EA-[[:digit:]]*'`
|
||||||
APPVER=`cat $APPDIR/version.txt`
|
APPVER=`cat $APPDIR/version.txt`
|
||||||
|
|
||||||
if [[ -z "$GITVER" ]]; then
|
if [[ -z "$GITVER" ]]; then
|
||||||
$APPDIR/usr/bin/yuzu
|
$APPDIR/AppRun-patched
|
||||||
elif [ "$GITVER" = "$APPVER" ]; then
|
elif [ "$GITVER" = "$APPVER" ]; then
|
||||||
$APPDIR/usr/bin/yuzu
|
$APPDIR/AppRun-patched
|
||||||
else
|
else
|
||||||
$APPDIR/update.sh
|
$APPDIR/update.sh
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue