diff options
author | Felix Fietkau <nbd@nbd.name> | 2017-04-04 11:44:22 +0200 |
---|---|---|
committer | Felix Fietkau <nbd@nbd.name> | 2017-04-04 12:33:37 +0200 |
commit | 2fd15033783a9dfa84d2a43fb81ff222ab865407 (patch) | |
tree | 443c5ca5fc64fd17d1ab7bf07bc0dc670bc4dc68 /scripts/download.pl | |
parent | 2526d150dc836b79caf4976413780bd77fc88c0a (diff) | |
download | upstream-2fd15033783a9dfa84d2a43fb81ff222ab865407.tar.gz upstream-2fd15033783a9dfa84d2a43fb81ff222ab865407.tar.bz2 upstream-2fd15033783a9dfa84d2a43fb81ff222ab865407.zip |
scripts/download.pl: fix error message on hash mismatch
Signed-off-by: Felix Fietkau <nbd@nbd.name>
Diffstat (limited to 'scripts/download.pl')
-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; } |