From b8652b4de0e9b386f9a93fbfb1dac06df230cd0a Mon Sep 17 00:00:00 2001 From: Christian Couder Date: Tue, 17 Apr 2007 06:40:50 +0200 Subject: [PATCH] Bisect: simplify "bisect start" logging. Signed-off-by: Christian Couder Signed-off-by: Junio C Hamano --- git-bisect.sh | 5 +---- 1 file changed, 1 insertion(+), 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 } -- 2.11.4.GIT