From: Junio C Hamano Date: Sat, 28 Feb 2009 00:00:33 +0000 (-0800) Subject: Merge branch 'cc/maint-1.6.0-bisect-fix' X-Git-Tag: v1.6.2~15 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=48fce9356531469b00bd0e1592d77e8b229316d0;p=git.git Merge branch 'cc/maint-1.6.0-bisect-fix' * cc/maint-1.6.0-bisect-fix: bisect: fix another instance of eval'ed string Conflicts: git-bisect.sh --- 48fce9356531469b00bd0e1592d77e8b229316d0 diff --cc git-bisect.sh index a857db447,b95dbbbbb..10ad34092 --- a/git-bisect.sh +++ b/git-bisect.sh @@@ -284,7 -263,13 +284,13 @@@ filter_skipped() _skip="$2" if [ -z "$_skip" ]; then - eval "$_eval" - eval_rev_list "$_eval" | { ++ eval "$_eval" | { + while read line + do + echo "$line &&" + done + echo ':' + } return fi