Fix check

This commit is contained in:
Reinier Criel 2025-12-18 13:37:29 +01:00
parent 28f34a8380
commit 6ce3791140

View file

@ -11,7 +11,7 @@ import { getCombinedCaBundlePath } from "../../registryProxy/certBundle.js";
* @return {NodeJS.ProcessEnv} Modified environment object * @return {NodeJS.ProcessEnv} Modified environment object
*/ */
function getPipXCaBundleEnvironmentVariables(env, combinedCaPath) { function getPipXCaBundleEnvironmentVariables(env, combinedCaPath) {
let retVal = env; let retVal = { ...env };
// SSL_CERT_FILE: Used by Python SSL libraries and underlying HTTP clients // SSL_CERT_FILE: Used by Python SSL libraries and underlying HTTP clients
if (env.SSL_CERT_FILE) { if (env.SSL_CERT_FILE) {