Skip to content

Commit

Permalink
add --retry 5 to curl opts in install_db4.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
qubenix committed Dec 6, 2018
1 parent e2c473f commit 522b80b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contrib/install_db4.sh
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ http_get() {
if [ -f "${2}" ]; then
echo "File ${2} already exists; not downloading again"
elif check_exists curl; then
curl --insecure "${1}" -o "${2}"
curl --insecure --retry 5 "${1}" -o "${2}"
else
wget --no-check-certificate "${1}" -O "${2}"
fi
Expand Down

0 comments on commit 522b80b

Please sign in to comment.