From 6c95750fe2183c3aa8443069ec7df7b236ba626d Mon Sep 17 00:00:00 2001 From: Martin Wimpress Date: Fri, 19 Apr 2024 22:11:21 +0100 Subject: [PATCH] refactor: update nixos to use web_pipe() --- quickget | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quickget b/quickget index cd07f85..98c1c10 100755 --- a/quickget +++ b/quickget @@ -2535,7 +2535,7 @@ function get_nixos() { local HASH="" local ISO="latest-nixos-${EDITION}-x86_64-linux.iso" local URL="https://channels.nixos.org/nixos-${RELEASE}" - HASH=$(wget -q -O- "${URL}/${ISO}.sha256" | cut_1) + HASH=$(web_pipe "${URL}/${ISO}.sha256" | cut_1) echo "${URL}/${ISO} ${HASH}" }