diff --git a/quickget b/quickget index c78fa91..8dc1e49 100755 --- a/quickget +++ b/quickget @@ -1845,9 +1845,9 @@ function get_artixlinux() { local HASH="" local ISO="" local URL="https://iso.artixlinux.org/iso" - DATE=$(wget -q -O- ${URL}/sha256sums | cut -d'-' -f4 | head -1) + DATE=$(web_pipe "${URL}/sha256sums" | cut -d'-' -f4 | head -1) ISO="artix-${EDITION}-${DATE}-x86_64.iso" - HASH=$(wget -q -O- ${URL}/sha256sums | grep "${ISO}") + HASH=$(web_pipe "${URL}/sha256sums" | grep "${ISO}") echo "${URL}/${ISO} ${HASH}" }