提交 51b3c00e 编写于 作者: J Junio C Hamano

format-patch: output filename reported to stdout verbatim.

Prepending asterisk to the output was just adding noise, and
making scripts like proposed git-send-mail by Andreas Ericsson
do unnecessary work.
Signed-off-by: NJunio C Hamano <junkio@cox.net>
上级 2d76d0d1
......@@ -268,7 +268,7 @@ do
file=`printf '%04d-%stxt' $i "$title"`
if test '' = "$stdout"
then
echo "* $file"
echo "$file"
process_one >"$outdir$file"
if test t = "$check"
then
......@@ -279,7 +279,7 @@ do
:
fi
else
echo >&2 "* $file"
echo >&2 "$file"
process_one
fi
i=`expr "$i" + 1`
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册