tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

releng_release.py (746B)


      1 # This Source Code Form is subject to the terms of the Mozilla Public
      2 # License, v. 2.0. If a copy of the MPL was not distributed with this
      3 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
      4 
      5 # Default configuration as used by Release Engineering for testing release/beta builds
      6 
      7 import os
      8 import sys
      9 
     10 import mozharness
     11 
     12 external_tools_path = os.path.join(
     13    os.path.abspath(os.path.dirname(os.path.dirname(mozharness.__file__))),
     14    "external_tools",
     15 )
     16 
     17 
     18 config = {
     19    # General local variable overwrite
     20    "exes": {
     21        "gittool.py": [
     22            # Bug 1227079 - Python executable eeded to get it executed on Windows
     23            sys.executable,
     24            os.path.join(external_tools_path, "gittool.py"),
     25        ],
     26    },
     27 }