view tools/verify-all-heads.sh @ 987:cf53cfaaa050

Fixes bug #358. Display correct error message if a svn pre-commit hook blocks the push
author Anton Agafonov <equeny@fb.com>
date Mon, 26 Nov 2012 11:38:34 -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