From: Jon Seymour Date: Thu, 4 Aug 2011 12:00:58 +0000 (+1000) Subject: bisect: use && to connect statements that are deferred with eval. X-Git-Tag: v1.7.7-rc0~24^2~9 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=6ba7acffdd24e9ed9b31e503ce87f2af31cd0883;p=git.git bisect: use && to connect statements that are deferred with eval. Christian Couder pointed out that the existing eval strategy swallows an initial non-zero return. Using && to connect the statements should fix this. Signed-off-by: Jon Seymour Signed-off-by: Junio C Hamano --- diff --git a/git-bisect.sh b/git-bisect.sh index 20f6dd562..a44ffe1ea 100755 --- a/git-bisect.sh +++ b/git-bisect.sh @@ -86,7 +86,7 @@ bisect_start() { 0) state='bad' ; bad_seen=1 ;; *) state='good' ;; esac - eval="$eval bisect_write '$state' '$rev' 'nolog'; " + eval="$eval bisect_write '$state' '$rev' 'nolog' &&" shift ;; esac @@ -145,7 +145,7 @@ bisect_start() { # echo "$start_head" >"$GIT_DIR/BISECT_START" && git rev-parse --sq-quote "$@" >"$GIT_DIR/BISECT_NAMES" && - eval "$eval" && + eval "$eval true" && echo "git bisect start$orig_args" >>"$GIT_DIR/BISECT_LOG" || exit # # Check if we can proceed to the next bisect state.