sapling/tests/test-paths
2008-01-25 16:18:00 -08:00

11 lines
162 B
Bash
Executable File

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