forked from etc/pineapple-src
Merge pull request #59 from Skitals/patch-1
Add curl as fallback to wget
This commit is contained in:
commit
163a08529f
1 changed files with 2 additions and 1 deletions
3
.github/workflows/AppRun
vendored
3
.github/workflows/AppRun
vendored
|
@ -5,7 +5,8 @@ export GDK_PIXBUF_MODULE_FILE=$(pkg-config --variable=gdk_pixbuf_cache_file gdk-
|
||||||
|
|
||||||
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 "EA-" | grep -o 'EA-[[:digit:]]*'`
|
GITURL='https://api.github.com/repos/pineappleEA/pineapple-src/releases/latest'
|
||||||
|
GITVER=`( wget -qO- $GITURL 2>/dev/null || curl -sL $GITURL ) | grep "EA-" | grep -o 'EA-[[:digit:]]*'`
|
||||||
APPVER=`cat $APPDIR/version.txt`
|
APPVER=`cat $APPDIR/version.txt`
|
||||||
|
|
||||||
if [[ -z "$GITVER" ]]; then
|
if [[ -z "$GITVER" ]]; then
|
||||||
|
|
Loading…
Reference in a new issue