From f28817d993aaf232d413c29679a10f96e5eac986 Mon Sep 17 00:00:00 2001 From: Gabriel Bustamante Date: Fri, 21 Jun 2024 17:03:47 +0000 Subject: [PATCH] Bug 1882556 - Use official branding on ESR .deb packages r=releng-reviewers,gbrown a=release Differential Revision: https://phabricator.services.mozilla.com/D214466 --- python/mozbuild/mozbuild/repackaging/deb.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/python/mozbuild/mozbuild/repackaging/deb.py b/python/mozbuild/mozbuild/repackaging/deb.py index 132c5b2e46c96..9ac448b52d1a6 100644 --- a/python/mozbuild/mozbuild/repackaging/deb.py +++ b/python/mozbuild/mozbuild/repackaging/deb.py @@ -498,6 +498,8 @@ def _get_en_US_brand_fluent_filename( return branding_fluent_filename_template.format(brand="official") elif release_type == "beta" and release_product == "devedition": return branding_fluent_filename_template.format(brand="aurora") + elif release_type.startswith("esr"): + return branding_fluent_filename_template.format(brand="official") else: return branding_fluent_filename_template.format(brand="unofficial")