Bug 1798565 - Partner repacks no longer need to handle the 'searchplugins' directory. r=firefox-build-system-reviewers,nalexander

Depends on D160964

Differential Revision: https://phabricator.services.mozilla.com/D160966
This commit is contained in:
Mark Banner
2022-11-01 21:45:26 +00:00
parent cc4015f0eb
commit 51f50abca4

View File

@@ -409,7 +409,7 @@ class RepackBase(object):
# Check whether we've already copied files over for this partner.
if not platform_dir.exists():
platform_dir.mkdir(mode=0o755, exist_ok=True, parents=True)
for i in ["distribution", "extensions", "searchplugins"]:
for i in ["distribution", "extensions"]:
full_path = self.full_partner_path / i
if full_path.exists():
copytree(str(full_path), str(platform_dir / i))