view tools/verify-all-heads.sh @ 1154:24edef55e61b

svnmeta: relax error checking with a parameter This parameter is for an upcoming patch that will use the svnmeta object to rebuild metadata instead of duplicating logic.
author Sean Farley <sean.michael.farley@gmail.com>
date Tue, 18 Feb 2014 22:48:45 -0600
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