diff options
author | Junio C Hamano <gitster@pobox.com> | 2009-02-27 16:00:33 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2009-02-27 16:00:33 -0800 |
commit | 48fce9356531469b00bd0e1592d77e8b229316d0 (patch) | |
tree | 54723352df79e9488a81ca8f2c848fce383b7d7c /git-bisect.sh | |
parent | 0c3473561610ac9f94c65f64178d2a66ee73eb64 (diff) | |
parent | cce074a2760940cb78232ce2201ab5590e274d4a (diff) | |
download | git-48fce9356531469b00bd0e1592d77e8b229316d0.tar.gz git-48fce9356531469b00bd0e1592d77e8b229316d0.tar.xz |
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-x | git-bisect.sh | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/git-bisect.sh b/git-bisect.sh index a857db447..10ad34092 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 |