Fix renaming

This commit is contained in:
Reinier Criel 2025-10-31 08:07:06 -07:00
parent c2a9cc2733
commit be5c4fb382

View file

@ -83,7 +83,7 @@ export function getCombinedCaBundlePath() {
}
const combined = parts.filter(Boolean).join("\n");
const target = path.join(os.tmpdir(), "safe-chain-python-ca-bundle.pem");
const target = path.join(os.tmpdir(), "safe-chain-ca-bundle.pem");
fs.writeFileSync(target, combined, { encoding: "utf8" });
cachedPath = target;
return cachedPath;