view tools/verify-all-heads.sh @ 976:ab3c02dad95c

maps: only show 'reading ...' as debug output I find it a bit too chatty for verbose output...
author Dan Villiom Podlaski Christiansen <danchr@gmail.com>
date Sun, 11 Nov 2012 15:30:49 +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