Browse Source

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
maint
Junio C Hamano 16 years ago
parent
commit
48fce93565
  1. 8
      git-bisect.sh

8
git-bisect.sh

@ -284,7 +284,13 @@ filter_skipped() { @@ -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


Loading…
Cancel
Save