Skip to content

Commit

Permalink
travis: retry CURL to gap-system.org
Browse files Browse the repository at this point in the history
  • Loading branch information
wilfwilson committed Jul 30, 2019
1 parent db47b75 commit 5e70e0d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion scripts/travis-build-dependencies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,8 @@ done
# Install required GAP packages
cd $GAPROOT/pkg
echo -e "\nGetting the required GAP packages (smallgrp, transgrp, primgrp)..."
curl -LO "https://www.gap-system.org/pub/gap/gap4pkgs/packages-required-master.tar.gz"
CURL="curl --connect-timeout 5 --max-time 10 --retry 5 --retry-delay 0 --retry-max-time 40 -LO"
$CURL "https://www.gap-system.org/pub/gap/gap4pkgs/packages-required-master.tar.gz"
tar xf packages-required-master.tar.gz
rm packages-required-master.tar.gz

Expand Down

0 comments on commit 5e70e0d

Please sign in to comment.