🔧 Bind update chanel to brand

This commit is contained in:
trickypr 2022-06-23 11:21:41 +10:00
parent 4ce520a91b
commit 75d88389a4
2 changed files with 4 additions and 1 deletions

View file

@ -20,6 +20,8 @@ const platform: Record<string, string> = {
const applyConfig = async (os: string) => {
log.info('Applying mozconfig...')
const brandingKey = dynamicConfig.get('brand')
let changeset
try {
@ -76,7 +78,7 @@ const applyConfig = async (os: string) => {
'\n\n' +
customConfig +
'\n' +
internalMozconfg(dynamicConfig.get('brand'))
internalMozconfg(brandingKey)
writeFileSync(resolve(ENGINE_DIR, 'mozconfig'), mergedConfig)