Mercurial > hgsubversion
view tools/verify-all-heads.sh @ 455:54e57da61c1a
This patch fixes, partially, an issue with tagpaths.
I found that, when using the tagpaths variable, I would actually get fatal
exceptions when the clone was happening. This line prevents the fatal
exception from occurring.
author | Michael J. Pedersen <mpedersen@datapipe.com> |
---|---|
date | Thu, 02 Jul 2009 16:12:09 -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