Commit 5d2e4360 authored by Sam Stephenson's avatar Sam Stephenson
Browse files

Tell curl to follow redirects

parent 894abadb
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -167,7 +167,7 @@ verify_checksum() {

retrieve_url() {
  if type curl &>/dev/null; then
    curl -f "$@"
    curl -Lf "$@"
  elif type wget &>/dev/null; then
    wget -O- "$@"
  else