From 9793041b892c1327baed0ce6e35f33e747b038b9 Mon Sep 17 00:00:00 2001 From: Martin Wimpress Date: Mon, 19 Sep 2022 11:26:00 +0100 Subject: [PATCH] Fix MX Linux and ReactOS download. Close #557 --- quickget | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/quickget b/quickget index be89aac..a8b7c82 100755 --- a/quickget +++ b/quickget @@ -380,7 +380,7 @@ function releases_lmde(){ } function releases_mxlinux(){ - echo 21.2 + echo 21.2.1 } function editions_mxlinux(){ @@ -1334,7 +1334,7 @@ function get_reactos() { local URL="" local TMPURL="" - TMPURL=$(wget -q -S -O- --max-redirect=0 "https://sourceforge.net/projects/reactos/files/latest/download" 2>&1 | grep Location | cut -d' ' -f4) + TMPURL=$(wget -q -S -O- --max-redirect=0 "https://sourceforge.net/projects/reactos/files/latest/download" 2>&1 | grep -i Location | cut -d' ' -f4) URL=${TMPURL%\?*} echo "${URL} ${HASH}" }