view tools/verify-all-heads.sh @ 788:836aa282f1f8

Added tag 1.2.1 for changeset 4bbc6bf947f5
author Augie Fackler <durin42@gmail.com>
date Mon, 28 Feb 2011 21:45:44 -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