mirror of
https://codeberg.org/libreboot/lbmk.git
synced 2026-07-25 07:46:17 +02:00
lib.sh: less confusing error in download()
don't say "file missing", because it may be present! instead, say that the download failed. this covers both contexts: internet failed and thus no file present, or the file is present but checksum verification failed. Signed-off-by: Leah Rowe <leah@libreboot.org>
This commit is contained in:
+1
-1
@@ -240,7 +240,7 @@ download()
|
|||||||
wget --tries 3 -U "$_ua" "$url" -O "$3" || continue
|
wget --tries 3 -U "$_ua" "$url" -O "$3" || continue
|
||||||
vendor_checksum "$4" "$3" || dl_fail="n"
|
vendor_checksum "$4" "$3" || dl_fail="n"
|
||||||
done;
|
done;
|
||||||
[ "$dl_fail" = "y" ] && $err "$1 $2 $3 $4: file missing"; return 0
|
[ "$dl_fail" = "y" ] && $err "$1 $2 $3 $4: not downloaded"; return 0
|
||||||
}
|
}
|
||||||
|
|
||||||
vendor_checksum()
|
vendor_checksum()
|
||||||
|
|||||||
Reference in New Issue
Block a user