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 86e4ba8 commit 4fd4d2eCopy full SHA for 4fd4d2e
server/env.js
@@ -68,10 +68,10 @@ const spec = {
68
};
69
70
for (const key in spec) {
71
- const file_key = key + '_FILE';
+ const file_key = key + "_FILE";
72
if (!(file_key in process.env)) continue;
73
try {
74
- process.env[key] = readFileSync(process.env[file_key], 'utf8').trim();
+ process.env[key] = readFileSync(process.env[file_key], "utf8").trim();
75
} catch {
76
// on error, env_FILE just doesn't get applied.
77
}
0 commit comments