view tools/verify-all-heads.sh @ 489:cd793ca555af

svnwrap: properly escape URLs before giving them to libsvn_* (patch tweaked somewhat by Augie Fackler)
author Chema Cortes <pych3m4@gmail.com>
date Tue, 15 Sep 2009 18:26:13 -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