Skip to content

Commit

Permalink
Update lib/workers/global/config/parse/env.ts
Browse files Browse the repository at this point in the history
Co-authored-by: Michael Kriese <[email protected]>
  • Loading branch information
Gabriel-Ladzaretti and viceice authored Dec 31, 2024
1 parent aacf6f7 commit 14960a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/workers/global/config/parse/env.ts
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ async function parseAndValidateOrExit(
}

try {
const config = parseJson(env[configEnvKey], '.json5') as AllConfig;
const config = parseJson(env[configEnvKey], `${configEnvKey}.env.json5`) as AllConfig;
logger.debug({ config }, `Detected config in env ${configEnvKey}`);

return await migrateAndValidateConfig(config, `${configEnvKey}`);
Expand Down

0 comments on commit 14960a6

Please sign in to comment.