author | Junio C Hamano <gitster@pobox.com> | |
Sat, 28 Feb 2009 00:00:33 +0000 (16:00 -0800) | ||
committer | Junio C Hamano <gitster@pobox.com> | |
Sat, 28 Feb 2009 00:00:33 +0000 (16:00 -0800) |
* cc/maint-1.6.0-bisect-fix:
bisect: fix another instance of eval'ed string
Conflicts:
git-bisect.sh
bisect: fix another instance of eval'ed string
Conflicts:
git-bisect.sh
1 | 2 | |||
---|---|---|---|---|
git-bisect.sh | patch | | diff1 | | diff2 | | blob | history |
diff --cc git-bisect.sh
index a857db447ceaf293f6e4ddad3c9038e18b96c0ca,b95dbbbbb243069f5e673869b3867cfa4151aff7..10ad340920efb7177df53cb3a209d1a3edd5a039
--- 1/git-bisect.sh
--- 2/git-bisect.sh
+++ b/git-bisect.sh
_skip="$2"
if [ -z "$_skip" ]; then
- eval "$_eval"
- eval_rev_list "$_eval" | {
++ eval "$_eval" | {
+ while read line
+ do
+ echo "$line &&"
+ done
+ echo ':'
+ }
return
fi