view tools/verify-all-heads.sh @ 606:789eec0a339c

wrappers: fix pull output if termwidth() is inexact This is going to happen soon on Windows.
author Patrick Mezard <pmezard@gmail.com>
date Mon, 26 Apr 2010 22:17:25 +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