mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-06-30 05:55:40 +00:00
8 lines
133 B
Bash
8 lines
133 B
Bash
httpxSslCertFileUnset() {
|
|
if [ ! -e "${SSL_CERT_FILE-}" ]; then
|
|
unset SSL_CERT_FILE
|
|
fi
|
|
}
|
|
|
|
postHooks+=(httpxSslCertFileUnset)
|