view tools/verify-all-heads.sh @ 488:a739568f8d48

Add a test for URLs that have spaces in them.
author Augie Fackler <durin42@gmail.com>
date Tue, 15 Sep 2009 21:57:17 -0400
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