view tools/verify-all-heads.sh @ 214:1416429584b2

Reuse ui from the repo if available.
author Dirkjan Ochtman <dirkjan@ochtman.nl>
date Fri, 20 Mar 2009 16:40:51 +0100
parents b1d2ea765516
children 3c87de482011
line wrap: on
line source

#!/bin/sh
. $(dirname $0)/common.sh

for b in `hg branches | cut -f 1 -d ' '` ; do
    hg co $b || break
    echo Verifying $b
    verify_current_revision keep > /dev/null || break
    echo $b Verified.
done