view tools/verify-all-heads.sh @ 1455:8cfe074cd463

maps: use util.fileproperty for RevMap.lastpulled It simplifies code a lot, and will avoid code duplication for the upcoming SqliteRevMap.
author Jun Wu <quark@fb.com>
date Mon, 13 Jun 2016 17:02:06 +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