From f0341788104449b2ed3ed10500c1d726a949dd4b Mon Sep 17 00:00:00 2001 From: Martin Wimpress Date: Sun, 28 Apr 2024 13:25:50 +0100 Subject: [PATCH] fix: always process redirections for zorin .iso images --- quickget | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/quickget b/quickget index 20df614..c348aec 100755 --- a/quickget +++ b/quickget @@ -1158,7 +1158,7 @@ function releases_zorin() { } function editions_zorin() { - echo core64 lite64 education64 edulite64 + echo core64 lite64 education64 } function check_hash() { @@ -2612,7 +2612,8 @@ function get_zorin() { local HASH="" local ISO="" local URL="" - URL="https://zrn.co/${RELEASE}${EDITION}" + # Process the URL redirections; required for Zorin + URL=$(web_redirect "https://zrn.co/${RELEASE}${EDITION}") echo "${URL} ${HASH}" }