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
This commit is contained in:
commit
48fce93565
@ -284,7 +284,13 @@ filter_skipped() {
|
|||||||
_skip="$2"
|
_skip="$2"
|
||||||
|
|
||||||
if [ -z "$_skip" ]; then
|
if [ -z "$_skip" ]; then
|
||||||
eval "$_eval"
|
eval "$_eval" | {
|
||||||
|
while read line
|
||||||
|
do
|
||||||
|
echo "$line &&"
|
||||||
|
done
|
||||||
|
echo ':'
|
||||||
|
}
|
||||||
return
|
return
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user