Skip to content

Commit 522b80b

Browse files
committed
add --retry 5 to curl opts in install_db4.sh
1 parent e2c473f commit 522b80b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

contrib/install_db4.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ http_get() {
5151
if [ -f "${2}" ]; then
5252
echo "File ${2} already exists; not downloading again"
5353
elif check_exists curl; then
54-
curl --insecure "${1}" -o "${2}"
54+
curl --insecure --retry 5 "${1}" -o "${2}"
5555
else
5656
wget --no-check-certificate "${1}" -O "${2}"
5757
fi

0 commit comments

Comments
 (0)