Skip to content
Snippets Groups Projects
Commit 8fa87bce4929 authored by Matt Harbison's avatar Matt Harbison
Browse files

hook: set `HGPLAIN=1` for external hooks

External hooks will probably turn around and run hg commands, so this seems like
a reasonable convenience for people who miss it in the documentation.

There are no test changes because `printenv.py` filters out anything without a
"HG_" prefix.  It wouldn't be a useful test anyway, because this is already
inherited from the test environment.

Differential Revision: https://phab.mercurial-scm.org/D9605
parent 3158522085f0
No related branches found
No related tags found
No related merge requests found
......@@ -157,6 +157,7 @@
env[b'HG_PENDING'] = repo.root
env[b'HG_HOOKTYPE'] = htype
env[b'HG_HOOKNAME'] = name
env[b'HGPLAIN'] = b'1'
for k, v in pycompat.iteritems(args):
# transaction changes can accumulate MBs of data, so skip it
......
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