summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@nbd.name>2017-04-04 11:44:22 +0200
committerJo-Philipp Wich <jo@mein.io>2017-12-13 15:00:08 +0100
commit977db9f08aac4f8f769e0a5bf6e6a188621f2ee4 (patch)
tree3a5d66db9b12c8fb0d72d1d85690bf06a3c3c6d3 /scripts
parent7fb03d96105ae3d42c422383bdb36eff76d403e0 (diff)
downloadmtk-20170518-977db9f08aac4f8f769e0a5bf6e6a188621f2ee4.zip
mtk-20170518-977db9f08aac4f8f769e0a5bf6e6a188621f2ee4.tar.gz
mtk-20170518-977db9f08aac4f8f769e0a5bf6e6a188621f2ee4.tar.bz2
scripts/download.pl: fix error message on hash mismatch
Signed-off-by: Felix Fietkau <nbd@nbd.name> (cherry picked from commit 2fd15033783a9dfa84d2a43fb81ff222ab865407)
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/download.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/download.pl b/scripts/download.pl
index 7eb7c7e..3936f76 100755
--- a/scripts/download.pl
+++ b/scripts/download.pl
@@ -166,7 +166,7 @@ sub download
$sum = $1;
if ($sum ne $file_hash) {
- print STDERR "MD5 sum of the downloaded file does not match (file: $sum, requested: $file_hash) - deleting download.\n";
+ print STDERR "Hash of the downloaded file does not match (file: $sum, requested: $file_hash) - deleting download.\n";
cleanup();
return;
}