Add missing --retry for curl

This commit is contained in:
MareStare 2025-03-23 04:09:18 +00:00
parent 567114c713
commit abcc297d7e

View file

@ -5,7 +5,7 @@ set -euxo pipefail
function fetch {
local url="$1"
curl --fail --silent --show-error --location --retry-all-errors "$url"
curl --fail --silent --show-error --location --retry 5 --retry-all-errors "$url"
}
function fetch_github_artifact_url {