view tools/verify-all-heads.sh @ 493:41c333473dda

try to deal with weirdly located branches in rebuildmeta (#118)
author Dirkjan Ochtman <dirkjan@ochtman.nl>
date Tue, 22 Sep 2009 16:46:16 +0200
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