view tools/verify-all-heads.sh @ 784:f214fb3f92cd

svnexternals: handle new overwrite argument of subrepo.get() The argument was introduced in hg-1.7.4-c19b9282d3a7.
author Patrick Mezard <pmezard@gmail.com>
date Wed, 02 Feb 2011 14:25:58 +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