Mercurial > hgsubversion
comparison tools/verify-all-heads.sh @ 396:11c4c7242a36
tools: use new svn verify command instead of svn export incantations
| author | Dirkjan Ochtman <dirkjan@ochtman.nl> |
|---|---|
| date | Tue, 09 Jun 2009 19:48:13 +0200 |
| parents | 5071b8511572 |
| children |
comparison
equal
deleted
inserted
replaced
| 395:636e9bf5d49c | 396:11c4c7242a36 |
|---|---|
| 1 #!/bin/sh | 1 #!/bin/sh |
| 2 . $(dirname $0)/common.sh | 2 . $(dirname $0)/common.sh |
| 3 | 3 |
| 4 for b in `hg branches -a | cut -f 1 -d ' ' | grep -v closed-branches` ; do | 4 for b in `hg branches -aq` ; 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 && \ | 7 hg svn verify |
| 8 echo $b verified. || \ | |
| 9 (echo $b failed. && /bin/rm -rf * && hg up -C $b) | |
| 10 done | 8 done |
