view tools/verify-all-heads.sh @ 926:c4001eecfdb1

wrappers: properly reset encoding when leaving push() This patch just wraps the function body into a try/finally, everything else is indentation and long lines folding changes.
author Patrick Mezard <patrick@mezard.eu>
date Sun, 09 Sep 2012 14:22:34 +0200
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