From ca6b22030bac5a762b257c97374fae693af1e968 Mon Sep 17 00:00:00 2001 From: Gregory Szorc Date: Mon, 25 Jan 2016 12:15:46 -0800 Subject: [PATCH] Bug 1242678 - Disable mozext when running `hg` commands; r=dminor We disable various extensions when running `hg` commands as part of `mach mercurial-setup` because they can interfere with operations. e.g. if the extension isn't compatible with your version of hg, you will get an error. For some reason "mozext" wasn't part of this list. Fix that. DONTBUILD (NPOTB) --- tools/mercurial/hgsetup/update.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/mercurial/hgsetup/update.py b/tools/mercurial/hgsetup/update.py index 9bf98ab8553..7429534134d 100644 --- a/tools/mercurial/hgsetup/update.py +++ b/tools/mercurial/hgsetup/update.py @@ -53,6 +53,7 @@ class MercurialUpdater(object): 'bzpost', 'firefoxtree', 'hgwatchman', + 'mozext', 'mqext', 'qimportbz', 'push-to-try',