1
0
Fork 0
mirror of https://github.com/git/git.git synced 2024-06-07 23:36:32 +02:00

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: Junio C Hamano <junkio@cox.net>
This commit is contained in:
Junio C Hamano 2005-11-26 12:09:07 -08:00
parent 2d76d0d151
commit 51b3c00e9d

View File

@ -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`