view tools/verify-all-heads.sh @ 875:9cc3ed1f474d

svn verify: mention URL in output Before: verifying 9b763e4870f5 against r72 After: verifying 9b763e4870f5 against http://gclient.googlecode.com/svn/trunk@72
author Dan Villiom Podlaski Christiansen <danchr@gmail.com>
date Wed, 14 Dec 2011 00:07: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