multil10n.py (526B)
1 #!/usr/bin/env python 2 # This Source Code Form is subject to the terms of the Mozilla Public 3 # License, v. 2.0. If a copy of the MPL was not distributed with this file, 4 # You can obtain one at http://mozilla.org/MPL/2.0/. 5 """multil10n.py""" 6 7 import os 8 import sys 9 10 # load modules from parent dir 11 sys.path.insert(1, os.path.dirname(sys.path[0])) 12 13 from mozharness.mozilla.l10n.multi_locale_build import MultiLocaleBuild 14 15 if __name__ == "__main__": 16 multi_locale_build = MultiLocaleBuild() 17 multi_locale_build.run_and_exit()