tests/test-paths
author Brodie Rao <me+hg@dackz.net>
Sun, 05 Jul 2009 18:52:55 -0400
changeset 9043 438f0b1d4684
parent 5951 92eb0a019bf2
permissions -rwxr-xr-x
tests: remove more instances of export FOO=bar bashism

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