🛠 CachyOS latest

Signed-off-by: zenobit <zenobit@disroot.org>
This commit is contained in:
zenobit 2024-01-29 16:16:53 +01:00 committed by Martin Wimpress
parent 147e938e93
commit facb5d163e
1 changed files with 8 additions and 3 deletions

View File

@ -543,7 +543,7 @@ function editions_bodhi() {
} }
function releases_cachyos() { function releases_cachyos() {
echo 230813 echo latest
} }
function editions_cachyos() { function editions_cachyos() {
@ -1612,8 +1612,13 @@ function get_bodhi() {
function get_cachyos() { function get_cachyos() {
local HASH="" local HASH=""
local ISO="cachyos-${EDITION}-linux-${RELEASE}.iso" local ISO=""
local URL="https://mirror.cachyos.org/ISO/${EDITION}/${RELEASE}" local URL=""
local release=""
release=$(curl "https://mirror.cachyos.org/ISO/${EDITION}/" | grep -Po '(?<=">)[0-9]+(?=/</a>)' | tail -n 1)
ISO="cachyos-${EDITION}-linux-${release}.iso"
URL="https://mirror.cachyos.org/ISO/${EDITION}/${release}"
HASH=$(wget -q -O- "${URL}/${ISO}.sha256" | cut -d' ' -f1) HASH=$(wget -q -O- "${URL}/${ISO}.sha256" | cut -d' ' -f1)
echo "${URL}/${ISO} ${HASH}" echo "${URL}/${ISO} ${HASH}"
} }