There is a new pull request by Dieken against master on the void-packages repository https://github.com/Dieken/void-packages stricter-update-check https://github.com/void-linux/void-packages/pull/43192 update-check: no partial response and not trust insecure certificate 1. My network is slow, `./xbps-src update-check xorg-server` takes 50s and `./xbps-src update-check xorg-server-xwayland` takes 11s, `curl --max-time 10` returns partial response but no error. So I remove `--max-time 10` and add `-f` to forbid partial response. It's better to call `set -eo pipefail` for the whole script but I'm not sure whether it will break the script. The CI job or interactive execution can have their own timeout. 2. `-k` means `--insecure`, it's bad, we should always validate HTTPS server certificate. #### Testing the changes - I tested the changes in this PR: **YES** A patch file from https://github.com/void-linux/void-packages/pull/43192.patch is attached