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 dc09686 commit 623d998Copy full SHA for 623d998
autoconf-entrypoint
@@ -66,7 +66,7 @@ def permissions_fix(filename):
66
for key, filename in SUPPORTED_CERTS.items():
67
full_path = os.path.join(CONF_FOLDER, filename)
68
# Write PEM file if it came from env variable
69
- if not os.path.exists(full_path) and filename in CERTS:
+ if not os.path.exists(full_path) and CERTS.get(filename):
70
with open(full_path, "w") as cert_file:
71
cert_file.write(CERTS[filename])
72
if os.path.exists(full_path):
0 commit comments