k1LoW / tbls

tbls is a CI-Friendly tool for document a database, written in Go.
MIT License
3.37k stars 165 forks source link

Added options for curl to skip downloading of tbls if the newest file exists #423

Closed usmanovbf closed 1 year ago

usmanovbf commented 1 year ago

Added options for curl to skip downloading of tbls if the file exists and a newer file is not available (-z curl option). It is really useful to speed up CI jobs when otherwise I need to wait every time the downloading completion. Here is the documentation. I have tested, and it works since github returns last-modified HTTP header in a response to download the file (last response after redirection) and this header is used for -z option.

k1LoW commented 1 year ago

@usmanovbf Thank you!!