[PATCH] Bisect: fix a removed variable that is still used.
From: Christian Couder <hidden>
Date: 2016-06-15 22:43:42
Signed-off-by: Christian Couder <redacted>
---
git-bisect.sh | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
This is fix for something I forgot in the patch named:
[PATCH 6/7] Bisect: factorise "bisect_{bad,good,dunno}"
into "bisect_state".
I can send an updated version of the above patch if
needed.
diff --git a/git-bisect.sh b/git-bisect.sh
index b266d17..abae9a6 100755
--- a/git-bisect.sh
+++ b/git-bisect.sh@@ -406,7 +406,7 @@ bisect_run () { if [ $res -ne 0 ]; then echo >&2 "bisect run failed:" - echo >&2 "$next_bisect exited with error code $res" + echo >&2 "'bisect_state $state' exited with error code $res" exit $res fi
--
1.5.3.3.136.g591d1-dirty