sapling/tests/test-paths

11 lines
162 B
Plaintext
Raw Normal View History

#!/bin/sh
hg init a
hg clone a b
cd a
echo '[paths]' >> .hg/hgrc
echo 'dupe = ../b' >> .hg/hgrc
2008-01-26 03:18:00 +03:00
hg in dupe | fgrep '../'
cd ..
2008-01-26 03:18:00 +03:00
hg -R a in dupe | fgrep '../'
true