🔧 Specify app host inside of generated mozconfig

This commit is contained in:
trickypr 2022-06-23 16:27:26 +10:00
parent 7a63e050f0
commit 09e0d3b3eb

View file

@ -1,3 +1,5 @@
import { config } from '..'
const otherBuildModes = `# You can change to other build modes by running:
# $ gluon set buildMode [dev|debug|release]`
@ -55,5 +57,8 @@ ac_add_options --with-branding=browser/branding/${brand}
# Config for updates
ac_add_options --disable-verify-mar
ac_add_options --enable-update-channel=${brand}
export MOZ_APPUPDATE_HOST=${
config.updateHostname || 'localhost:7648 # This should not resolve'
}
`
}