view tools/verify-all-heads.sh @ 909:e42a05915edf

Add .noseids to the .hgignore Not having a well-developed personal .hgignore, I get an untracked .noseids every time I rune nosetests. Let's ignore it in the repo .hgignore.
author David Schleimer <dschleimer@fb.com>
date Thu, 17 May 2012 14:02:30 -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