view tools/verify-all-heads.sh @ 473:45df4d9320fa

Fix 'parent dir of a branch is deleted' refactoring from 343da84.
author Max Bowsher <maxb@f2s.com>
date Sat, 04 Jul 2009 18:12:18 +0100
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