view tools/verify-all-heads.sh @ 767:6c244d3ceaf7

add a MANIFEST.in file (fixes #142) This ensures that source archives include help, tests and our Makefile.
author Dan Villiom Podlaski Christiansen <danchr@gmail.com>
date Mon, 29 Nov 2010 11:50:56 +0100
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