Mercurial > hgsubversion
view tools/verify-all-heads.sh @ 1502:fb91566d849c
util: return baseset instead of plain list from revset
Support for returning plain lists from revset predicates was recently removed.
(See: https://www.mercurial-scm.org/repo/hg/rev/35b8bb1ef02b)
author | Arun Kulshreshtha <kulshrax@fb.com> |
---|---|
date | Fri, 21 Apr 2017 13:43:59 -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