Skip to content
Snippets Groups Projects
Commit eecc0052 authored by Pierre-Yves David's avatar Pierre-Yves David :octopus:
Browse files

config: also respect HGRCSKIPREPO in the zeroconf extension

Differential Revision: https://phab.mercurial-scm.org/D8075
parent bf23d6ee
No related branches found
No related tags found
No related merge requests found
......@@ -35,6 +35,7 @@
extensions,
hg,
pycompat,
rcutil,
ui as uimod,
)
from mercurial.hgweb import server as servermod
......@@ -144,7 +145,8 @@
prefix = app.ui.config(b"web", b"prefix", b"").strip(b'/') + b'/'
for repo, path in repos:
u = app.ui.copy()
u.readconfig(os.path.join(path, b'.hg', b'hgrc'))
if rcutil.use_repo_hgrc():
u.readconfig(os.path.join(path, b'.hg', b'hgrc'))
name = os.path.basename(repo)
path = (prefix + repo).strip(b'/')
desc = u.config(b'web', b'description')
......
......@@ -299,3 +299,11 @@
$ killdaemons.py
$ cat access.log
$ cat errors.log
Check that zeroconf respect HGRCSKIPREPO=1
$ hg paths --config extensions.zeroconf=
hg: parse error at $TESTTMP/.hg/hgrc:3: [broken
[255]
$ HGRCSKIPREPO=1 hg paths --config extensions.zeroconf=
foo = $TESTTMP/bar
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment