diff options
author | Christian Couder <chriscool@tuxfamily.org> | 2007-04-17 06:40:50 +0200 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2007-04-16 21:44:40 -0700 |
commit | b8652b4de0e9b386f9a93fbfb1dac06df230cd0a (patch) | |
tree | 753656b2b4d0b5637e3fd16f25ecc19d83a20a07 /git-bisect.sh | |
parent | aa3698516109df16f763ed2f0182075edabd7ea0 (diff) | |
download | git-b8652b4de0e9b386f9a93fbfb1dac06df230cd0a.tar.gz |
Bisect: simplify "bisect start" logging.
Signed-off-by: Christian Couder <chriscool@tuxfamily.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'git-bisect.sh')
-rwxr-xr-x | git-bisect.sh | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/git-bisect.sh b/git-bisect.sh index 85c374e21e..1cd456173d 100755 --- a/git-bisect.sh +++ b/git-bisect.sh @@ -116,10 +116,7 @@ bisect_start() { done sq "$@" >"$GIT_DIR/BISECT_NAMES" - { - printf "git-bisect start" - echo "$orig_args" - } >>"$GIT_DIR/BISECT_LOG" + echo "git-bisect start$orig_args" >>"$GIT_DIR/BISECT_LOG" bisect_auto_next } |