view tools/verify-all-heads.sh @ 605:b72850177e5c

stupid: update monkeypatch for 91c58cf54eee
author Augie Fackler <durin42@gmail.com>
date Thu, 22 Apr 2010 22:37:03 -0500
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