view tests/test-paths @ 8293:f00573bc93f8

test: change repair strip test to illustrate manifest errors
author Henrik Stuart <henrik.stuart@edlund.dk>
date Mon, 04 May 2009 13:47:12 +0200
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