fix type for env variable

This commit is contained in:
dakkar 2024-08-06 11:24:43 +01:00
parent 151470d882
commit cb5de3fbfc

View file

@ -227,7 +227,7 @@ export function loadConfig(): Config {
if (configFiles.length === 0 if (configFiles.length === 0
&& !process.env['MK_WARNED_ABOUT_CONFIG']) { && !process.env['MK_WARNED_ABOUT_CONFIG']) {
console.log('No config files loaded, check if this is intentional'); console.log('No config files loaded, check if this is intentional');
process.env['MK_WARNED_ABOUT_CONFIG'] = true; process.env['MK_WARNED_ABOUT_CONFIG'] = '1';
} }
const config = configFiles.map(path => fs.readFileSync(path, 'utf-8')) const config = configFiles.map(path => fs.readFileSync(path, 'utf-8'))