1
0
mirror of https://git.openwrt.org/openwrt/openwrt.git synced 2024-06-18 13:13:55 +02:00

show md5sums on mismatch in download.pl

SVN-Revision: 9367
This commit is contained in:
Felix Fietkau 2007-10-20 15:30:16 +00:00
parent 67eaa9814d
commit 9bfa0d1d08

View File

@ -86,7 +86,7 @@ sub download
$sum = $1;
if (($md5sum =~ /\w{32}/) and ($sum ne $md5sum)) {
print STDERR "MD5 sum of the downloaded file does not match - deleting download.\n";
print STDERR "MD5 sum of the downloaded file does not match (file: $sum, requested: $md5sum) - deleting download.\n";
cleanup();
return;
}