Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: mozharness/mozilla/l10n/multi_locale_build.py

Issue 29327949: Issue 3047 - Change default search engines (Closed)
Patch Set: Fixed even more review issues Created Sept. 22, 2015, 10:53 a.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « mozharness/abb/transform_locales.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mozharness/mozilla/l10n/multi_locale_build.py
diff --git a/mozharness/mozilla/l10n/multi_locale_build.py b/mozharness/mozilla/l10n/multi_locale_build.py
index 51d3693e43534e6b1b0619180491e0c48ae11052..7e0b6d425b823141131413459b5d0f5046f81ffb 100755
--- a/mozharness/mozilla/l10n/multi_locale_build.py
+++ b/mozharness/mozilla/l10n/multi_locale_build.py
@@ -19,6 +19,7 @@ from mozharness.base.errors import MakefileErrorList, SSHErrorList
from mozharness.base.log import FATAL
from mozharness.base.vcs.vcsbase import MercurialScript
from mozharness.mozilla.l10n.locales import LocalesMixin
+from mozharness.abb.transform_locales import transform_locales as abb_transform_locales
# MultiLocaleBuild {{{1
@@ -102,7 +103,9 @@ class MultiLocaleBuild(LocalesMixin, MercurialScript):
'upload-en-US',
'backup-objdir',
'restore-objdir',
- 'add-locales', 'package-multi',
+ 'add-locales',
+ 'abb-transform-locales',
+ 'package-multi',
'upload-multi', 'summary'],
require_config_file=require_config_file)
@@ -246,6 +249,10 @@ class MultiLocaleBuild(LocalesMixin, MercurialScript):
"""
return self.run_command(**kwargs)
+ def abb_transform_locales(self):
+ dirs = self.query_abs_dirs()
+ abb_transform_locales(dirs['abs_objdir'], self)
+
# __main__ {{{1
if __name__ == '__main__':
pass
« no previous file with comments | « mozharness/abb/transform_locales.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld