view tools/verify-all-heads.sh @ 912:adf4a0890cc5

Catch/abort on subversion exceptions in list_dir Give the user an error message if they attempt to pull a non-existent SVN rev instead of a backtrace
author Brad Hall <bhall@fb.com>
date Mon, 04 Jun 2012 11:27:24 -0700
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