From 8e8f29c2e571d09382d707924dfbd6742bf48896 Mon Sep 17 00:00:00 2001 From: Leah Rowe Date: Sun, 28 Sep 2025 02:29:04 +0100 Subject: vendor.sh: remove false error message mkdst cycles through a bunch of outputted files when running an extract function, to find the right file as per defined checksums; if one is found, it can still show errors for the others, leading the user to think something is wrong. remove their fear by removing this benign error. Signed-off-by: Leah Rowe --- include/vendor.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include') diff --git a/include/vendor.sh b/include/vendor.sh index 14ef29d8..f2024334 100644 --- a/include/vendor.sh +++ b/include/vendor.sh @@ -183,7 +183,7 @@ fetch() mkdst() { - if bad_checksum "$1" "$2"; then + if bad_checksum "$1" "$2" 2>/dev/null; then x_ rm -f "$2" else x_ mv "$2" "$_dl_bin" -- cgit v1.2.1