Mercurial > hg
view tests/test-chg.t @ 29266:b3a677c82a35
debuginstall: expose modulepolicy
With this, you can check for pure easily:
$ HGMODULEPOLICY=py ./hg debuginstall -T "{hgmodulepolicy}"
py
author | timeless <timeless@mozdev.org> |
---|---|
date | Wed, 09 Mar 2016 19:55:45 +0000 |
parents | 983353035cec |
children | 148a9a5379f0 |
line wrap: on
line source
init repo $ hg init foo $ cd foo ill-formed config $ hg status $ echo '=brokenconfig' >> $HGRCPATH $ hg status hg: parse error at * (glob) [255] alias having an environment variable and set to use pager $ rm $HGRCPATH $ cat >> $HGRCPATH <<'EOF' > [ui] > formatted = yes > [extensions] > pager = > [pager] > pager = sed -e 's/^/P/' > attend = printa > [alias] > printa = log -T "$A\n" -r 0 > EOF $ A=1 hg printa P1 $ A=2 hg printa P2