view tests/test-paths @ 11689:1135e42f0049

inotify: remove unused variable
author David Soria Parra <dsp@php.net>
date Sat, 24 Jul 2010 22:15:22 +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