view tools/verify-all-heads.sh @ 456:b5b4095d2993

Second fix required for our tags to work.
author Michael J. Pedersen <mpedersen@datapipe.com>
date Thu, 02 Jul 2009 16:37:33 -0500
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