-
Notifications
You must be signed in to change notification settings - Fork 40
/
hgmo
executable file
·35 lines (25 loc) · 913 Bytes
/
hgmo
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#!/usr/bin/env python
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
import os
import sys
HERE = os.path.abspath(os.path.dirname(__file__))
def main(args):
if "VIRTUAL_ENV" not in os.environ:
activate = os.path.join(HERE, "venv", "bin", "activate_this.py")
with open(activate) as f:
exec(f.read(), dict(__file__=activate))
sys.executable = os.path.join(HERE, "venv", "bin", "python")
from mach.main import Mach
m = Mach(os.getcwd())
m.define_category(
"hgmo",
"hg.mozilla.org",
"Control and Interact with an hg.mozilla.org cluster",
50,
)
import vcttesting.hgmo_mach_commands
return m.run(args)
if __name__ == "__main__":
sys.exit(main(sys.argv[1:]))