aboutsummaryrefslogtreecommitdiff
path: root/git-bisect.sh
diff options
context:
space:
mode:
authorChristian Couder <chriscool@tuxfamily.org>2007-04-17 06:40:50 +0200
committerJunio C Hamano <junkio@cox.net>2007-04-16 21:44:40 -0700
commitb8652b4de0e9b386f9a93fbfb1dac06df230cd0a (patch)
tree753656b2b4d0b5637e3fd16f25ecc19d83a20a07 /git-bisect.sh
parentaa3698516109df16f763ed2f0182075edabd7ea0 (diff)
downloadgit-b8652b4de0e9b386f9a93fbfb1dac06df230cd0a.tar.gz
git-b8652b4de0e9b386f9a93fbfb1dac06df230cd0a.tar.xz
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-xgit-bisect.sh5
1 files changed, 1 insertions, 4 deletions
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
}