Mercurial > hgsubversion
view tools/verify-all-heads.sh @ 1595:74c5fd9c3e76
hgsubversion: drop some compat code for hg < 3.3
hg 3.3 is very old and also not supported by current hgsubversion. So let's drop
some compat code.
author | Pulkit Goyal <pulkit@yandex-team.ru> |
---|---|
date | Tue, 13 Nov 2018 19:15:59 +0300 |
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