view tools/verify-all-heads.sh @ 1571:f8ca09a97492

svnrepo: implement commandexecutor for hg 4.6
author Paul Morelle <paul.morelle@octobus.net>
date Fri, 25 May 2018 15:25:53 +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