view tools/verify-all-heads.sh @ 539:36eb608b831b

svnmeta: make tag detection code more explicity Also, migrate it to split_branch_path(exacttag=True)
author Patrick Mezard <pmezard@gmail.com>
date Tue, 02 Feb 2010 21:15:03 +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