view tools/verify-all-heads.sh @ 618:82bfc96a1311

svnrepo: support new discovery module introduced in 3d0591a66118
author Augie Fackler <durin42@gmail.com>
date Sat, 12 Jun 2010 20:55:23 -0500
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