Bug 1637709 - Configure purge extension when calling `hg purge` r=nalexander

Differential Revision: https://phabricator.services.mozilla.com/D75328
This commit is contained in:
Ricky Stewart 2020-05-14 18:14:11 +00:00
Родитель 69ecad92c6
Коммит 5af71702d3
1 изменённых файлов: 3 добавлений и 2 удалений

Просмотреть файл

@ -231,8 +231,9 @@ class Clobber(MachCommandBase):
if 'python' in what:
if conditions.is_hg(self):
cmd = ['hg', 'purge', '--all', '-I', 'glob:**.py[cdo]',
'-I', 'path:python/', '-I', 'path:third_party/python/']
cmd = ['hg', '--config', 'extensions.purge=', 'purge', '--all',
'-I', 'glob:**.py[cdo]', '-I', 'path:python/', '-I',
'path:third_party/python/']
elif conditions.is_git(self):
cmd = ['git', 'clean', '-f', '-x', '*.py[cdo]', 'python/',
'third_party/python/']