From 3440e1f651623cd909c6a2a17a024e754950a61b Mon Sep 17 00:00:00 2001 From: Leah Rowe Date: Sun, 9 Jun 2024 11:04:08 +0100 Subject: lib.sh: simplify download() Signed-off-by: Leah Rowe --- include/lib.sh | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'include/lib.sh') diff --git a/include/lib.sh b/include/lib.sh index 25b470bf..5244ce45 100755 --- a/include/lib.sh +++ b/include/lib.sh @@ -232,15 +232,14 @@ download() dl_fail="y" # 1 url, 2 url backup, 3 destination, 4 checksum vendor_checksum "$4" "$3" || dl_fail="n" [ "$dl_fail" = "n" ] && e "$3" f && return 0 - x_ mkdir -p "${3%/*}" - for url in "$1" "$2"; do + x_ mkdir -p "${3%/*}" && for url in "$1" "$2"; do [ "$dl_fail" = "n" ] && break [ -z "$url" ] && continue x_ rm -f "$3" curl --location --retry 3 -A "$_ua" "$url" -o "$3" || \ wget --tries 3 -U "$_ua" "$url" -O "$3" || continue vendor_checksum "$4" "$3" || dl_fail="n" - done + done; [ "$dl_fail" = "y" ] && $err "$1 $2 $3 $4: file missing"; return 0 } -- cgit v1.2.1