comparison tools/bisect-find-bad.sh @ 208:de3807ceea5c

Removed verify_* commands and replaced them with a shell script to pass to hg bisect --command.
author Augie Fackler <durin42@gmail.com>
date Mon, 09 Mar 2009 14:13:48 -0500
parents
children b1d2ea765516
comparison
equal deleted inserted replaced
207:b20a6c149021 208:de3807ceea5c
1 #!/bin/bash
2 /bin/rm -rf *
3 svn export `hg svn info 2> /dev/null | grep '^URL: ' | sed 's/URL: //'` -`hg svn parent | sed 's/.*: //;s/ .*//'` . --force
4 if [ `hg st | wc -l` = 0 ] ; then
5 exit 0
6 else
7 hg revert --all
8 hg purge
9 exit 1
10 fi