tests/test-paths
author Benoit Allard <benoit@aeteurope.nl>
Wed, 22 Oct 2008 18:23:32 +0200
changeset 7201 b1aea76f7001
parent 5951 92eb0a019bf2
permissions -rwxr-xr-x
hgwebdir: show nested repositories (issue1336)

#!/bin/sh
hg init a
hg clone a b
cd a
echo '[paths]' >> .hg/hgrc
echo 'dupe = ../b' >> .hg/hgrc
hg in dupe | fgrep '../'
cd ..
hg -R a in dupe | fgrep '../'
true