Skip to content

Commit

Permalink
Merge branch 'cc/maint-1.6.0-bisect-fix'
Browse files Browse the repository at this point in the history
* cc/maint-1.6.0-bisect-fix:
  bisect: fix another instance of eval'ed string

Conflicts:
	git-bisect.sh
  • Loading branch information
Junio C Hamano committed Feb 28, 2009
2 parents 0c34735 + cce074a commit 48fce93
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion git-bisect.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 48fce93

Please sign in to comment.