view tools/verify-all-heads.sh @ 771:768639283275

incoming: pass unexpanded source to wrapped function (fixes #178) This will allow the MQ extension to use paths from the patch repository.
author Dan Villiom Podlaski Christiansen <danchr@gmail.com>
date Mon, 29 Nov 2010 11:50:55 +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