tor-browser

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

tc_common.py (479B)


      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 import os.path
      6 
      7 import mozharness
      8 
      9 external_tools_path = os.path.join(
     10    os.path.abspath(os.path.dirname(os.path.dirname(mozharness.__file__))),
     11    "external_tools",
     12 )
     13 
     14 config = {
     15    "exes": {
     16        "gittool.py": [os.path.join(external_tools_path, "gittool.py")],
     17    },
     18 }