view tools/verify-all-heads.sh @ 825:c3450512237d

svnexternals.py: style cleanups Prefixed unused variables that have to stay because of tuple unpacking with _, removed some unused variables, fix some trailing whitespace.
author Yonggang Luo <luoyonggang@gmail.com>
date Sat, 01 Oct 2011 00:45:45 +0800
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