Commit 5d2e4360 by Sam Stephenson

Tell curl to follow redirects

parent 894abadb
...@@ -167,7 +167,7 @@ verify_checksum() { ...@@ -167,7 +167,7 @@ verify_checksum() {
retrieve_url() { retrieve_url() {
if type curl &>/dev/null; then if type curl &>/dev/null; then
curl -f "$@" curl -Lf "$@"
elif type wget &>/dev/null; then elif type wget &>/dev/null; then
wget -O- "$@" wget -O- "$@"
else else
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment