update ccache #7

Merged
qurious-pixel merged 3 commits from patch-3 into main 2021-01-22 12:00:21 +01:00
Showing only changes of commit eb66a02a96 - Show all commits

View file

@ -7,8 +7,11 @@ mkdir -p $HOME/.local/share/icons/hicolor/scalable/apps && cp $APPDIR/yuzu.svg $
GITVER=`wget -qO- https://www.github.com/pineappleEA/pineapple-src/releases/tag/continuous | grep pineappleEA/pineapple-src/commit/ | cut -d '"' -f 2 | cut -d '/' -f 5 | awk '!x[$0]++'`
APPVER=`cat $APPDIR/version.txt`
if [ "$GITVER" = "$APPVER" ]; then
if [[ -z "$GITVER" ]]; then
$APPDIR/usr/bin/yuzu
elif [ "$GITVER" = "$APPVER" ]; then
$APPDIR/usr/bin/yuzu
else
$APPDIR/update.sh
fi