diff options
author | Felix Fietkau <nbd@nbd.name> | 2017-04-04 11:44:22 +0200 |
---|---|---|
committer | Jo-Philipp Wich <jo@mein.io> | 2017-12-13 15:00:08 +0100 |
commit | 977db9f08aac4f8f769e0a5bf6e6a188621f2ee4 (patch) | |
tree | 3a5d66db9b12c8fb0d72d1d85690bf06a3c3c6d3 | |
parent | 7fb03d96105ae3d42c422383bdb36eff76d403e0 (diff) | |
download | upstream-977db9f08aac4f8f769e0a5bf6e6a188621f2ee4.tar.gz upstream-977db9f08aac4f8f769e0a5bf6e6a188621f2ee4.tar.bz2 upstream-977db9f08aac4f8f769e0a5bf6e6a188621f2ee4.zip |
scripts/download.pl: fix error message on hash mismatch
Signed-off-by: Felix Fietkau <nbd@nbd.name>
(cherry picked from commit 2fd15033783a9dfa84d2a43fb81ff222ab865407)
-rwxr-xr-x | scripts/download.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/download.pl b/scripts/download.pl index 7eb7c7ebce..3936f7659a 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; } |