view tools/verify-all-heads.sh @ 842:794f3e41ec1e stable

The handler seems to close the target in subversion-1.7.x. This patch works around it. It has also successfully been tested against subversion-1.6.17.
author Nico R. <n-roeser@gmx.net>
date Mon, 31 Oct 2011 00:47:52 +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