Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <junkio@cox.net>2005-11-26 23:09:07 +0300
committerJunio C Hamano <junkio@cox.net>2005-11-26 23:09:07 +0300
commit51b3c00e9d95371a9ad202204f01c5981f241b20 (patch)
tree185da43d63cb7347ce7f6845eb1f8dd3ab1fee1a /git-format-patch.sh
parent2d76d0d151239538c43b61572283405b10df43ac (diff)
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>
Diffstat (limited to 'git-format-patch.sh')
-rwxr-xr-xgit-format-patch.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/git-format-patch.sh b/git-format-patch.sh
index bc56876531..9b4088045a 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`