diff options
Diffstat (limited to 'script/update/blobs/download')
-rwxr-xr-x | script/update/blobs/download | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/script/update/blobs/download b/script/update/blobs/download index 00c7b189..2903c504 100755 --- a/script/update/blobs/download +++ b/script/update/blobs/download @@ -440,7 +440,7 @@ fetch_update() [ -z "${x}" ] && continue rm -f "${dl_path}" || \ err "fetch_update ${fw_type}: !rm -f ${dl_path}" - wget -U "${agent}" "${x}" -O "${dl_path}" || continue + wget --tries 3 -U "${agent}" "${x}" -O "${dl_path}" || continue vendor_checksum "${dlsum}" && dl_fail="n" done if [ "${dl_fail}" = "y" ]; then |