view tools/verify-all-heads.sh @ 840:88f3cda47def stable

wrappers: clone must return hg.clone() result (issue300, issue306)
author Wagner Bruna <wbruna@softwareexpress.com.br>
date Wed, 19 Oct 2011 17:57:33 -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