From 615e7857f7981f9db1d41a504cbfdbf607564316 Mon Sep 17 00:00:00 2001 From: zenobit Date: Fri, 14 Feb 2025 03:32:53 +0100 Subject: [PATCH] kdeneon update --- actions/kdeneon | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/actions/kdeneon b/actions/kdeneon index 4d4d52a..9e4c1a1 100644 --- a/actions/kdeneon +++ b/actions/kdeneon @@ -14,7 +14,11 @@ function get_() { local HASH="" local ISO="" local URL="https://files.kde.org/neon/images/${RELEASE}/current" - ISO=$(web_pipe "${URL}/neon-${RELEASE}-current.sha256sum" | cut -d' ' -f3-) + if [ "$RELEASE" == 'developer' ]; then + ISO=$(web_pipe "${URL}/neon-unstable-${RELEASE}-current.sha256sum" | cut -d' ' -f3-) + else + ISO=$(web_pipe "${URL}/neon-${RELEASE}-current.sha256sum" | cut -d' ' -f3-) + fi HASH=$(web_pipe "${URL}/neon-${RELEASE}-current.sha256sum" | cut -d' ' -f1) echo "${URL}/${ISO} ${HASH}" }