view tools/verify-all-heads.sh @ 883:78ffbe411695

Added tag 1.4 for changeset 07234759a3f7
author Augie Fackler <raf@durin42.com>
date Tue, 01 May 2012 21:06:52 -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