view tools/verify-all-heads.sh @ 794:c32c92fdca5b

util: use real function definitions for keywords, document them Starting with mercurial 1.9 template keywords and filters documentation is generated from the items docstrings.
author Patrick Mezard <pmezard@gmail.com>
date Sat, 12 Mar 2011 15:27:22 +0100
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