We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a93e190 commit 0815604Copy full SHA for 0815604
useful-tools/quick-sharun.sh
@@ -944,9 +944,9 @@ _add_certs_check() {
944
'
945
for c in $_possible_certs; do
946
if [ -f "$c" ]; then
947
- REQUESTS_CA_BUNDLE=$c
948
- CURL_CA_BUNDLE=$c
949
- SSL_CERT_FILE=$c
+ REQUESTS_CA_BUNDLE=${REQUESTS_CA_BUNDLE:-$c}
+ CURL_CA_BUNDLE=${CURL_CA_BUNDLE:-$c}
+ SSL_CERT_FILE=${SSL_CERT_FILE:-$c}
950
export REQUESTS_CA_BUNDLE CURL_CA_BUNDLE SSL_CERT_FILE
951
break
952
fi
0 commit comments