Removed optimized builds and made generics the default ones
Some checks are pending
CI / general (push) Waiting to run

This commit is contained in:
mr. m 2024-12-23 07:16:27 +00:00
parent ecd6b650f0
commit 7c9ed09733
4 changed files with 3 additions and 29 deletions

View file

@ -423,21 +423,11 @@ pref("devtools.selfxss.count", 5);
function setUpdateURLs() {
let suffix = '';
if ((process as any).surferPlatform == 'win32') {
if (compatMode == 'x86_64') {
suffix = '-generic';
}
}
if ((process as any).surferPlatform == 'darwin') {
if (compatMode == 'x86_64') {
suffix = '-generic';
}
}
if ((process as any).surferPlatform == 'linux') {
if (compatMode == 'x86_64') {
suffix = '-generic';
}
}
const baseURL = `URL=https://@MOZ_APPUPDATE_HOST@/updates/browser/%BUILD_TARGET%/%CHANNEL%${suffix}/update.xml`
const appIni = join(ENGINE_DIR, 'build', 'application.ini.in')
const appIniContents = readFileSync(appIni).toString()