view tools/verify-all-heads.sh @ 858:bb6a013abaed

phases: mark newly created commits from subversion as 'public' to fix #335
author Sean Farley <sean@mcs.anl.gov>
date Tue, 17 Apr 2012 17:44:28 -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