Skip to content

Commit

Permalink
prettier fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Gabriel-Ladzaretti committed Dec 31, 2024
1 parent 14960a6 commit c24dd9b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion lib/workers/global/config/parse/env.ts
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,10 @@ async function parseAndValidateOrExit(
}

try {
const config = parseJson(env[configEnvKey], `${configEnvKey}.env.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 c24dd9b

Please sign in to comment.