imperialCHEPI / healthgps

Global Health Policy Simulation model (Health-GPS)
https://imperialchepi.github.io/healthgps/
BSD 3-Clause "New" or "Revised" License
5 stars 1 forks source link

Allow HTTP redirects for file downloads #458

Closed alexdewar closed 3 months ago

alexdewar commented 3 months ago

It turns out GitHub often redirects file downloads to another URL, which the current code won't handle. Fix by telling libcurl to allow this (it's disabled by default).

Fixes #457.

With this fix, we can finally use data from the healthgps-data repo as an input source directly :smile:

See: https://github.com/imperialCHEPI/healthgps-data/releases/tag/20240624

alexdewar commented 3 months ago

PS -- I noticed download_file() was pointlessly returning an input argument, so I removed it.