Mercurial > hgsubversion
view tools/verify-all-heads.sh @ 1585:d6b75cf2c27d
util: add _relativeuipath attribute to PrefixMatch
Recently matchers in core introduced a _relativeuipath attribute and started
using it. We need to add that to PrefixMatch too. This change is no-op on older
versions of mercurial.
author | Pulkit Goyal <pulkit@yandex-team.ru> |
---|---|
date | Wed, 24 Oct 2018 15:22: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