summaryrefslogtreecommitdiffstats
path: root/git-bisect.sh
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2009-02-28 01:00:33 +0100
committerJunio C Hamano <gitster@pobox.com>2009-02-28 01:00:33 +0100
commit48fce9356531469b00bd0e1592d77e8b229316d0 (patch)
tree54723352df79e9488a81ca8f2c848fce383b7d7c /git-bisect.sh
parentMerge branch 'cc/maint-1.6.0-bisect-fix' (diff)
parentbisect: fix another instance of eval'ed string (diff)
downloadgit-48fce9356531469b00bd0e1592d77e8b229316d0.tar.xz
git-48fce9356531469b00bd0e1592d77e8b229316d0.zip
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
Diffstat (limited to 'git-bisect.sh')
-rwxr-xr-xgit-bisect.sh8
1 files changed, 7 insertions, 1 deletions
diff --git a/git-bisect.sh b/git-bisect.sh
index a857db447c..10ad340920 100755
--- a/git-bisect.sh
+++ b/git-bisect.sh
@@ -284,7 +284,13 @@ filter_skipped() {
_skip="$2"
if [ -z "$_skip" ]; then
- eval "$_eval"
+ eval "$_eval" | {
+ while read line
+ do
+ echo "$line &&"
+ done
+ echo ':'
+ }
return
fi