Mercurial > hgbook
changeset 421:73b094b764ec
Fixed bad argument usage with bisect
author | Nicolas Cavigneaux <nico@bounga.org> |
---|---|
date | Thu, 15 Jan 2009 10:13:51 +0100 |
parents | f79542a53cb2 |
children | 51b5d56744c5 |
files | en/examples/bisect |
diffstat | 1 files changed, 5 insertions(+), 5 deletions(-) [+] |
line wrap: on
line diff
--- a/en/examples/bisect Thu Jan 15 10:12:53 2009 +0100 +++ b/en/examples/bisect Thu Jan 15 10:13:51 2009 +0100 @@ -33,15 +33,15 @@ #$ name: search.init -hg bisect --init +hg bisect init #$ name: search.bad-init -hg bisect --bad +hg bisect bad #$ name: search.good-init -hg bisect --good 10 +hg bisect good 10 #$ name: search.step1 @@ -66,7 +66,7 @@ fi echo this revision is $result - hg bisect --$result + hg bisect $result } #$ name: search.step2 @@ -81,7 +81,7 @@ #$ name: search.reset -hg bisect --reset +hg bisect reset #$ name: