view tools/verify-all-heads.sh @ 753:b218d2bb8c45

rename our uisetup initialization method into extsetup We're not doing any ui-specific setup, so we can use the old form and remain compatible with Mercurial 1.3.
author Dan Villiom Podlaski Christiansen <danchr@gmail.com>
date Thu, 18 Nov 2010 09:06:06 +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