Skip to content

Commit

Permalink
use double quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
poeti8 committed Feb 6, 2025
1 parent 86e4ba8 commit 4fd4d2e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions server/env.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,10 +68,10 @@ const spec = {
};

for (const key in spec) {
const file_key = key + '_FILE';
const file_key = key + "_FILE";
if (!(file_key in process.env)) continue;
try {
process.env[key] = readFileSync(process.env[file_key], 'utf8').trim();
process.env[key] = readFileSync(process.env[file_key], "utf8").trim();
} catch {
// on error, env_FILE just doesn't get applied.
}
Expand Down

0 comments on commit 4fd4d2e

Please sign in to comment.