We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d92691a commit 5383c2bCopy full SHA for 5383c2b
1 file changed
scripts/fetch-sidecar.sh
@@ -37,7 +37,7 @@ URL="https://github.com/${REPO}/releases/download/${VERSION}/${ASSET}"
37
TMP=$(mktemp -d)
38
trap 'rm -rf "$TMP"' EXIT
39
40
-curl -fsSL "$URL" -o "${TMP}/${ASSET}"
+curl --retry 5 --retry-delay 2 --retry-all-errors -fsSL "$URL" -o "${TMP}/${ASSET}"
41
42
mkdir -p "$DEST_DIR"
43
0 commit comments