comparison tools/verify-all-heads.sh @ 216:3c87de482011

tools: fixes for wc outputting with spaces.
author Augie Fackler <durin42@gmail.com>
date Sat, 28 Mar 2009 14:26:35 -0500
parents b1d2ea765516
children 5071b8511572
comparison
equal deleted inserted replaced
215:b5ef9a404f5d 216:3c87de482011
1 #!/bin/sh 1 #!/bin/sh
2 . $(dirname $0)/common.sh 2 . $(dirname $0)/common.sh
3 3
4 for b in `hg branches | cut -f 1 -d ' '` ; do 4 for b in `hg branches -a | cut -f 1 -d ' ' | grep -v closed-branches` ; do
5 hg co $b || break 5 hg co $b || break
6 echo Verifying $b 6 echo Verifying $b
7 verify_current_revision keep > /dev/null || break 7 verify_current_revision keep > /dev/null || break
8 echo $b Verified. 8 echo $b Verified.
9 done 9 done