asdf-community / asdf-hashicorp

HashiCorp plugin for the asdf version manager
https://github.com/asdf-vm/asdf
MIT License
234 stars 54 forks source link

Avoid downloading release just to check if it exists #80

Closed XaF closed 5 months ago

XaF commented 5 months ago

The get_download_url function uses curl -fs which will download the file for no reason. We can take advantage of the headers instead by calling curl -fsI which is much faster.

nathantypanski commented 5 months ago

LGTM. Approving and merging.