From c2b31d51b0b39129e674b7a114ba0a1b4c3155bb Mon Sep 17 00:00:00 2001 From: D Date: Wed, 20 Mar 2024 19:43:32 +1100 Subject: [PATCH] . --- scripts/export_cfb.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/export_cfb.ts b/scripts/export_cfb.ts index 8097a77..45f93f1 100644 --- a/scripts/export_cfb.ts +++ b/scripts/export_cfb.ts @@ -16,7 +16,7 @@ export const exportCfb = async ( }) => EuropeanBrandEnvironment | AustraliaBrandEnvironment ) => { console.debug(`Pulling image ${dockerImage}`); - // execSync(`docker pull ${dockerImage}`); + execSync(`docker pull ${dockerImage}`); const brandCFB = { kia: '', hyundai: '', @@ -69,7 +69,7 @@ export const exportCfb = async ( const cfbFile = `// Auto generated file on ${new Date().toISOString()} // run \`npm run eu:export:cfb\` or \`npm run au:export:cfb\` respectively to update it -${brandCFB.kia.length > 0 ? `export const kiaCFB = Buffer.from('${brandCFB.kia}', 'base64');` : ''} +export const kiaCFB = Buffer.from('${brandCFB.kia}', 'base64'); export const hyundaiCFB = Buffer.from('${brandCFB.hyundai}', 'base64');`; writeFileSync(join(__dirname, '..', 'src', 'constants', outputFilename), cfbFile);