view tools/verify-all-heads.sh @ 590:5e9ab25e0112

handle nonexistant svn repositories, fixes issue 137
author Jonathan Kotta <jpkotta@gmail.com>
date Tue, 09 Mar 2010 20:58:08 -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