view tools/verify-all-heads.sh @ 823:4244f8f37484

Ignore nbproject
author César Izurieta <cesar@caih.org>
date Sun, 02 Oct 2011 21:33:39 -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