1.2.423; add curl redirect

This commit is contained in:
xiota 2025-03-01 19:53:54 +00:00
parent 82b0d7708c
commit 1bf443bffd
3 changed files with 6 additions and 6 deletions

View file

@ -1,7 +1,7 @@
pkgbase = ryujinx-canary
pkgdesc = Experimental Nintendo Switch Emulator written in C#
pkgver = 1.2.414
pkgrel = 2
pkgver = 1.2.423
pkgrel = 1
url = https://github.com/Ryubing/Ryujinx
arch = x86_64
license = MIT
@ -17,7 +17,7 @@ pkgbase = ryujinx-canary
conflicts = ryujinx
options = !strip
options = !debug
source = ryujinx-canary-1.2.414.tar.gz::https://github.com/Ryubing/Ryujinx/archive/refs/tags/Canary-1.2.414.tar.gz
source = ryujinx-canary-1.2.423.tar.gz::https://github.com/Ryubing/Ryujinx/archive/refs/tags/Canary-1.2.423.tar.gz
source = PKGBUILD.canary
source = PKGBUILD.common
sha256sums = SKIP

View file

@ -10,8 +10,8 @@ fi
_pkgname="ryujinx"
pkgname="$_pkgname-canary"
pkgver=1.2.414
pkgrel=2
pkgver=1.2.423
pkgrel=1
pkgdesc="Experimental Nintendo Switch Emulator written in C#"
url="https://github.com/Ryubing/Ryujinx"
license=('MIT')

View file

@ -13,7 +13,7 @@ _update_version() {
fi
local _response _pkgver_new
_response=$(curl -Ssf "$url/tags")
_response=$(curl -Ssf -L --max-redirs 3 "$url/tags")
_tag=$(
printf '%s' "$_response" \
| grep -E '/tag/Canary-([0-9\.]+)"' \