view tools/verify-all-heads.sh @ 510:925ff8c5989c

Do URI-encode before opening
author Afriza N. Arief <afriza.na@gmail.com>
date Thu, 24 Dec 2009 13:10:36 -0600
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