chore: preserve recent changes to get_freedos()

This commit is contained in:
Martin Wimpress 2024-04-21 13:59:25 +01:00 committed by Martin Wimpress
parent eed65ddc81
commit 66aca19437
1 changed files with 2 additions and 2 deletions

View File

@ -1904,11 +1904,11 @@ function get_freedos() {
case ${RELEASE} in
1.2)
ISO="FD12CD.iso"
HASH=$(wget -q -O- "${URL}/FD12.sha" | grep "${ISO}" | cut_1)
HASH=$(web_pipe "${URL}/FD12.sha" | grep "${ISO}" | cut_1)
;;
1.3)
ISO="FD13-LiveCD.zip"
HASH=$(wget -q -O- "${URL}/verify.txt" | grep -A 8 "sha256sum" | grep "${ISO}" | cut_1)
HASH=$(web_pipe "${URL}/verify.txt" | grep -A 8 "sha256sum" | grep "${ISO}" | cut_1)
;;
esac
echo "${URL}/${ISO} ${HASH}"