view tools/verify-all-heads.sh @ 971:77b22e5b4ea6 1.5

svn_swig_wrapper: Ensure subversion config files We will create a subversion config file if it does not exist. Currently, svn_config_ensure() exists only swig.
author Mitsuhiro Koga <shiena.jp@gmail.com>
date Mon, 29 Oct 2012 20:16:19 +0900
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