Skip to content

Commit 48fce93

Browse files
committed
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
2 parents 0c34735 + cce074a commit 48fce93

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

git-bisect.sh

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,13 @@ filter_skipped() {
284284
_skip="$2"
285285

286286
if [ -z "$_skip" ]; then
287-
eval "$_eval"
287+
eval "$_eval" | {
288+
while read line
289+
do
290+
echo "$line &&"
291+
done
292+
echo ':'
293+
}
288294
return
289295
fi
290296

0 commit comments

Comments
 (0)