scripts/download.pl: fix error message on hash mismatch
[openwrt/openwrt.git] / scripts / download.pl
index 0398c564efd0641ad8e0964f744f03d5fe5eb417..3936f7659a600468bf530106120a586c16cc08fd 100755 (executable)
@@ -82,7 +82,7 @@ sub download_cmd($) {
        }
 
        return $have_curl
-               ? (qw(curl --connect-timeout 20 --retry 5 --location --insecure), shellwords($ENV{CURL_OPTIONS} || ''), $url)
+               ? (qw(curl -f --connect-timeout 20 --retry 5 --location --insecure), shellwords($ENV{CURL_OPTIONS} || ''), $url)
                : (qw(wget --tries=5 --timeout=20 --no-check-certificate --output-document=-), shellwords($ENV{WGET_OPTIONS} || ''), $url)
        ;
 }
@@ -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;
                }