chore: Make indentation consistent

This commit is contained in:
zen0bit 2024-04-21 08:00:50 +02:00 committed by Martin Wimpress
parent d7cbf04f47
commit d90b1ac669
1 changed files with 135 additions and 135 deletions

View File

@ -2108,11 +2108,11 @@ function get_freedos() {
case ${RELEASE} in
1.2)
ISO="FD12CD.iso"
HASH=$(web_pipe "${URL}/FD12.sha" | grep "${ISO}" | cut_1)
HASH=$(wget -q -O- "${URL}/FD12.sha" | grep "${ISO}" | cut_1)
;;
1.3)
ISO="FD13-LiveCD.zip"
HASH=$(web_pipe "${URL}/verify.txt" | grep -A 8 "sha256sum" | grep "${ISO}" | cut_1)
HASH=$(wget -q -O- "${URL}/verify.txt" | grep -A 8 "sha256sum" | grep "${ISO}" | cut_1)
;;
esac
echo "${URL}/${ISO} ${HASH}"
@ -2124,7 +2124,7 @@ function get_garuda() {
local ISO=""
local URL="https://iso.builds.garudalinux.org/iso/latest/garuda"
ISO=${EDITION}/latest.iso
HASH="$(web_pipe "${URL}/${ISO}.sha256" | cut_1)"
HASH="$(wget -q -O- "${URL}/${ISO}.sha256" | cut_1)"
echo "${URL}/${ISO} ${HASH}"
}