view tools/verify-all-heads.sh @ 1243:3606aff13a22

stupid: in svnbackend, adapt for core Mercurial changes There's no efficient way to capture this API change in compathacks.
author Siddharth Agarwal <sid0@fb.com>
date Tue, 16 Sep 2014 16:19:43 -0700
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