view tools/verify-all-heads.sh @ 1582:e15dc9e9cd56

wrappers: lock the repo for the whole pull operation It prevents from an unnecessary loading of 'fncache' on each revision.
author Ivan Lezhankin <ilezhankin@yandex-team.ru>
date Mon, 06 Aug 2018 14:52:33 +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