view tools/verify-all-heads.sh @ 998:8045ebda705a

Improve UX. Update the implicit Path name for working with SVN repositories.
author Jamie Clayton <jamie.clayton@jenasysdesign.com.au>
date Sun, 10 Mar 2013 19:32:35 +1000
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