view tools/verify-all-heads.sh @ 1598:394007c5efea

hgsubversion: drop some more code which is for compat with hg<1.6
author Pulkit Goyal <pulkit@yandex-team.ru>
date Tue, 27 Nov 2018 14:04:08 +0300
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