From: Junio C Hamano Date: Sat, 26 Nov 2005 20:09:07 +0000 (-0800) Subject: format-patch: output filename reported to stdout verbatim. X-Git-Tag: v0.99.9l^2~57 X-Git-Url: https://git.octo.it/?a=commitdiff_plain;h=51b3c00e9d95371a9ad202204f01c5981f241b20;p=git.git 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 --- diff --git a/git-format-patch.sh b/git-format-patch.sh index bc568765..9b408804 100755 --- a/git-format-patch.sh +++ b/git-format-patch.sh @@ -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`