view tools/verify-all-heads.sh @ 927:3271fa883f34

wrappers: ensure all pull() code path reset the encoding This patch only extends an existing try/finally block upward, and make sure the progress bar is reset only if the relevant variables are available.
author Patrick Mezard <patrick@mezard.eu>
date Sun, 09 Sep 2012 14:38:04 +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