commit | 532a488b1b7f64d010c12d56d5c046058bf4a2ef | [log] [tgz] |
---|---|---|
author | Paul Sokolovsky <paul.sokolovsky@linaro.org> | Mon May 22 15:50:04 2023 +0300 |
committer | Paul Sokolovsky <paul.sokolovsky@linaro.org> | Mon May 22 15:50:04 2023 +0300 |
tree | 297514adfb326bbf9e5a28afcd56f9942e3baac5 | |
parent | 5b5eadaf056985764732de29e48314f5494b67ed [diff] [blame] |
utils.sh: fetch_file: Drop -s option, add --no-progress-meter Following another error where curl visibly did not retry: https://ci.trustedfirmware.org/job/tf-a-builder/2093525/console, and based on suggestions in the upstream issue: https://github.com/curl/curl/issues/11124 Signed-off-by: Paul Sokolovsky <paul.sokolovsky@linaro.org> Change-Id: I6c31bd0b389d242566dd6f94178af6356144dc51
diff --git a/utils.sh b/utils.sh index 34f82c7..e7d5960 100644 --- a/utils.sh +++ b/utils.sh
@@ -141,7 +141,7 @@ sa="${saveas+-o $saveas}" echo "Fetch: $url -> $saveas" # Use curl to support file protocol - curl --fail --connect-timeout 10 --retry 6 -sLS $sa "$url" + curl --fail --no-progress-meter --connect-timeout 10 --retry 6 -LS $sa "$url" else sa="${saveas-.}" echo "Fetch: $url -> $sa"