mirror of
https://codeberg.org/libreboot/lbmk.git
synced 2026-07-11 05:52:36 +02:00
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 <leah@libreboot.org>
This commit is contained in:
+1
-1
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user