view tools/verify-all-heads.sh @ 572:7f0e8fd6ee22

svnwrap: save the repository root, this might be useful later on
author Dirkjan Ochtman <dirkjan@ochtman.nl>
date Mon, 22 Feb 2010 23:24:11 +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