From: Christian Couder Date: Tue, 17 Apr 2007 04:40:50 +0000 (+0200) Subject: Bisect: simplify "bisect start" logging. X-Git-Tag: v1.5.2-rc0~42 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=b8652b4de0e9b386f9a93fbfb1dac06df230cd0a;p=git.git Bisect: simplify "bisect start" logging. Signed-off-by: Christian Couder Signed-off-by: Junio C Hamano --- diff --git a/git-bisect.sh b/git-bisect.sh index 85c374e21..1cd456173 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 }