view tests/test-paths @ 9008:edd6bdee9798

i18n-pt_BR: synchronized with 59bb11a97fe5
author Wagner Bruna <wbruna@softwareexpress.com.br>
date Wed, 01 Jul 2009 08:51:22 -0300
parents 92eb0a019bf2
children
line wrap: on
line source

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