# HG changeset patch # User Ludovic Chabant # Date 1652201699 25200 # Node ID 6d5e2a583502611315c70bb9f97f08aa02a53244 # Parent fc35cae2fb524bc05f75576742ed9e4569c271f3 Remove onsub extension diff -r fc35cae2fb52 -r 6d5e2a583502 install.cfg --- a/install.cfg Wed May 04 15:03:48 2022 -0700 +++ b/install.cfg Tue May 10 09:54:59 2022 -0700 @@ -11,7 +11,6 @@ lib/hg/mercurial-all_paths = https://foss.heptapod.net/mercurial/mercurial-all_paths lib/hg/mercurial-cli-templates = https://hg.stevelosh.com/mercurial-cli-templates lib/hg/mercurial-extension_utils = https://foss.heptapod.net/mercurial/mercurial-extension_utils -lib/hg/onsub = https://hg.sr.ht/~ludovicchabant/onsub lib/iterm2/color-schemes = [git]https://github.com/mbadolato/iTerm2-Color-Schemes.git diff -r fc35cae2fb52 -r 6d5e2a583502 install.py --- a/install.py Wed May 04 15:03:48 2022 -0700 +++ b/install.py Tue May 10 09:54:59 2022 -0700 @@ -219,7 +219,6 @@ 'git:allowed = true', '[extensions]', 'hggit = %s' % _p('lib/hg/hg-git/hggit/'), - 'onsub = %s' % _p('lib/hg/onsub/onsub.py'), 'allpaths = %s' % _p('lib/hg/mercurial-all_paths/mercurial_all_paths.py'), 'prompt = %s' % _p('lib/hg/hg-prompt/prompt.py'), 'evolve = %s' % _p('lib/hg/evolve/hgext3rd/evolve'), @@ -357,7 +356,7 @@ if not m: raise Exception("Not a git url: %s" % url) url, branch = m.group('url'), (m.group('branch') or 'master') - + if _is_non_empty_dir_with(path, '.git'): if not force: print("git pull origin %s %s" % (branch, path))