view tools/verify-all-heads.sh @ 1515:106716ed2ed0

subrepo: add missing arg to dirty() Upstream Mercurial has added a new 'missing' argument to the dirty function. We need to add it as well. The default argument should mean this is backwards compatible with older Mercurials. I don't understand the subrepo or hgsubverison code 100%, so this patch is my best attempt at a fix.
author Durham Goode <durham@fb.com>
date Tue, 11 Jul 2017 16:37:57 -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