view tools/verify-all-heads.sh @ 1406:ae4bdba90e7b stable

templatekw: use decorator to register keywords
author Sean Farley <sean@farley.io>
date Thu, 05 May 2016 23:18:52 -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