view tools/verify-all-heads.sh @ 1100:91cf81a36236

svnexternals: import pathutil.canonpath if available hgsubversion broke with upstream Mercurial due to f962870712da. This fixes that.
author Siddharth Agarwal <sid0@fb.com>
date Fri, 22 Nov 2013 11:09:59 -0800
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