Correct batocera for release 34 (#512)

* chore: docs submodule

* check for current batocera release at runtime
pull/517/head
Phil Clifford 2 years ago committed by GitHub
parent d0c2bb228a
commit b7e1fba117
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      build-docs
  2. 21
      quickget

@ -1 +1 @@
Subproject commit 51ee39c41c13fb1cc78e86ec24b100f35c337d70
Subproject commit c881d8e4862a5810a4793f34626181667fde8f89

@ -291,7 +291,7 @@ function releases_fedora() {
}
function releases_batocera() {
echo 33
echo 32 33 34
}
function editions_fedora() {
@ -850,8 +850,23 @@ function get_arcolinux() {
function get_batocera() {
local HASH=""
local ISO="batocera-x86_64-${RELEASE}-20220203.img.gz"
local URL="https://updates.batocera.org/x86_64/stable/last"
local URL="https://mirrors.o2switch.fr/batocera/x86_64/stable/last"
local ISO="$(curl -sl ${URL}/ | grep -e 'batocera.*img.gz'|cut -d\" -f2)"
local CURRENT_RELEASE=$(echo "${ISO}"| cut -d\- -f3)
case ${RELEASE} in
${CURRENT_RELEASE}) #Current release
URL+=""
;;
*)
URL+="/archives/${RELEASE}"
ISO="$(curl -sl ${URL}/ | grep -e 'batocera.*img.gz'|cut -d\" -f2)"
;; # non-current are here
esac
echo "${URL}/${ISO} ${HASH}"
}

Loading…
Cancel
Save