mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-08 12:37:37 +00:00
b458452297
--HG-- extra : rebase_source : 93de55544f2f907255a286b1074ed201de62a46b
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 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
|