view tools/verify-all-heads.sh @ 989:68191be64af8

updatemeta: fix missing errno import
author Patrick Mezard <patrick@mezard.eu>
date Sat, 01 Dec 2012 18:52:00 +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