view tools/verify-all-heads.sh @ 1520:fc91ba4ffa52

revset: accept additional arguments The upstream is going to add an `order` argument to `revset.methods` functions. Let's update our code to be compatible with it. [1]: https://phab.mercurial-scm.org/D451
author Jun Wu <quark@fb.com>
date Mon, 28 Aug 2017 10:15:18 -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