tests/test-paths
author Joel Rosdahl <joel@rosdahl.net>
Thu, 06 Mar 2008 22:23:41 +0100
changeset 6212 e75aab656f46
parent 5951 92eb0a019bf2
permissions -rwxr-xr-x
Remove unused imports

#!/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