view tests/test-paths @ 9242:6fd3f795e908

issue1251: bail if darcs version is too old
author Bryan O'Sullivan <bos@serpentine.com>
date Sat, 25 Jul 2009 10:08:20 -0700
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