view tools/verify-all-heads.sh @ 1353:63a29df4f661

subvertpy_wrapper: remove meta attribute Apparently, I used this in a previous attempt to implement filtering out branches but this got left over in a refactor.
author Sean Farley <sean@farley.io>
date Tue, 29 Sep 2015 11:00:39 -0700
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