view tools/verify-all-heads.sh @ 591:4359ddd73b00 1.1

strip off root file name only once for missing files
author Gerhard Weis <gweis@gmx.at>
date Sat, 20 Mar 2010 15:07:37 +1000
parents 11c4c7242a36
children
line wrap: on
line source

#!/bin/sh
. $(dirname $0)/common.sh

for b in `hg branches -aq` ; do
    hg co $b || break
    echo verifying $b
    hg svn verify
done