tests/test-paths
author Steve Borho <steve@borho.org>
Mon, 04 Feb 2008 19:38:34 -0600
changeset 6025 f2335246e5c7
parent 5951 92eb0a019bf2
permissions -rwxr-xr-x
filemerge: wrap quotes around tool path

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