tests/test-paths
author Thomas Arendsen Hein <thomas@intevation.de>
Fri, 07 Nov 2008 13:02:02 +0100
changeset 7327 a1758089ee35
parent 5951 92eb0a019bf2
permissions -rwxr-xr-x
Kill trailing whitespace in templates

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