tests/test-paths
author Dirkjan Ochtman <dirkjan@ochtman.nl>
Sun, 29 Jun 2008 22:36:18 +0200
changeset 6785 4879468fa28f
parent 5951 92eb0a019bf2
permissions -rwxr-xr-x
hgweb: return content iterator instead of using write() callable

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