view tools/verify-all-heads.sh @ 1456:77da55e0baa4

externals: support peg revisions in URLs I saw this some time ago -- according to the Subversion documentation peg revisions this is quite valid. Not entirely sure how to test this... (While at it, I raised our externals-related logging from debug to verbose as it's vaguely meaningful to users.) http://svnbook.red-bean.com/en/1.7/svn.advanced.externals.html
author Dan Villiom Podlaski Christiansen <danchr@gmail.com>
date Tue, 22 Apr 2014 15:40:39 +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