From 542987bdbc85cdda9142968e399403fe4a9c678e Mon Sep 17 00:00:00 2001 From: Martin Wimpress Date: Fri, 23 Jan 2026 22:42:55 +0000 Subject: [PATCH] fix(quickget): update Athena OS ISO naming for v23.11+ Newer releases use 'athenaos-rolling' prefix instead of 'athena-rolling'. Detect which naming scheme to use by checking URL availability. --- quickget | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/quickget b/quickget index 76ad0ad..89fe7d9 100755 --- a/quickget +++ b/quickget @@ -1625,7 +1625,13 @@ function get_artixlinux() { function get_athenaos() { local HASH="" local URL="https://github.com/Athena-OS/athena/releases/download/${RELEASE}" - local ISO="athena-rolling-x86_64.iso" + local ISO="" + # Newer releases (v23.11+) use "athenaos-rolling" naming, older ones use "athena-rolling" + if web_check "${URL}/athenaos-rolling-x86_64.iso"; then + ISO="athenaos-rolling-x86_64.iso" + else + ISO="athena-rolling-x86_64.iso" + fi HASH=$(web_pipe "${URL}/${ISO}.sha256" | cut -d' ' -f1) echo "${URL}/${ISO} ${HASH}" }