Mercurial > hgsubversion
view tools/verify-all-heads.sh @ 687:d424bd1ac647
templatekw: restore compatibility with hg < 1.5
The templatekw module was new in 1.5 - it looks nontrivial to extend the
templater in 1.4.x and earlier, so just disable this feature on those
versions.
author | Augie Fackler <durin42@gmail.com> |
---|---|
date | Mon, 06 Sep 2010 17:08:11 -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