view tools/verify-all-heads.sh @ 1022:1c9b1d0e0ba3

layouts: fix failure for nonexistent SVN paths Since b2d89ba `hg clone` fails for incorrect SVN paths with "NameError: global name 'svnwrap' is not defined"
author Vladimir Zakharov <zakharov.vv@gmail.com>
date Thu, 20 Jun 2013 15:07:19 +0400
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