view tools/verify-all-heads.sh @ 760:bf1c27a89c76

Extract files not to be pushed in util
author Patrick Mezard <pmezard@gmail.com>
date Fri, 19 Nov 2010 20:14:04 +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