chore: Make indentation consistent
This commit is contained in:
parent
d7cbf04f47
commit
d90b1ac669
6
quickget
6
quickget
|
@ -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}"
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue