summaryrefslogtreecommitdiff
path: root/git-bisect.sh
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2009-02-28 00:00:33 (GMT)
committerJunio C Hamano <gitster@pobox.com>2009-02-28 00:00:33 (GMT)
commit48fce9356531469b00bd0e1592d77e8b229316d0 (patch)
tree54723352df79e9488a81ca8f2c848fce383b7d7c /git-bisect.sh
parent0c3473561610ac9f94c65f64178d2a66ee73eb64 (diff)
parentcce074a2760940cb78232ce2201ab5590e274d4a (diff)
downloadgit-48fce9356531469b00bd0e1592d77e8b229316d0.zip
git-48fce9356531469b00bd0e1592d77e8b229316d0.tar.gz
git-48fce9356531469b00bd0e1592d77e8b229316d0.tar.bz2
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 a857db4..10ad340 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