mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-07 12:15:51 +00:00
3e949ee8fe
This removes ambiguity as to which modules are being imported, making import slightly faster as Python doesn't need to test so many directories for file presence. All files should already be using absolute imports because mach command modules aren't imported to the package they belong to: they instead belong to the "mach" package. So relative imports shouldn't have been used. --HG-- extra : commitid : 6tFME1KKfTD extra : rebase_source : 78728f82f5487281620e00c2a8004cd5e1968087
51 lines
1.7 KiB
Python
51 lines
1.7 KiB
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/.
|
|
|
|
from __future__ import absolute_import, print_function, unicode_literals
|
|
|
|
import os
|
|
import sys
|
|
|
|
from mach.decorators import (
|
|
CommandProvider,
|
|
CommandArgument,
|
|
Command,
|
|
)
|
|
|
|
|
|
@CommandProvider
|
|
class VersionControlCommands(object):
|
|
def __init__(self, context):
|
|
self._context = context
|
|
|
|
@Command('mercurial-setup', category='devenv',
|
|
description='Help configure Mercurial for optimal development.')
|
|
@CommandArgument('-u', '--update-only', action='store_true',
|
|
help='Only update recommended extensions, don\'t run the wizard.')
|
|
def mercurial_bootstrap(self, update_only=False):
|
|
sys.path.append(os.path.dirname(__file__))
|
|
|
|
|
|
config_paths = ['~/.hgrc']
|
|
if sys.platform in ('win32', 'cygwin'):
|
|
config_paths.insert(0, '~/mercurial.ini')
|
|
config_paths = map(os.path.expanduser, config_paths)
|
|
|
|
if update_only:
|
|
from hgsetup.update import MercurialUpdater
|
|
updater = MercurialUpdater(self._context.state_dir)
|
|
result = updater.update_all(map(os.path.expanduser, config_paths))
|
|
else:
|
|
from hgsetup.wizard import MercurialSetupWizard
|
|
wizard = MercurialSetupWizard(self._context.state_dir)
|
|
result = wizard.run(map(os.path.expanduser, config_paths))
|
|
|
|
# Touch a file so we can periodically prompt to update extensions.
|
|
state_path = os.path.join(self._context.state_dir,
|
|
'mercurial/setup.lastcheck')
|
|
with open(state_path, 'a'):
|
|
os.utime(state_path, None)
|
|
|
|
return result
|