git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] post-receive-email hook: handle order of arguments consistently
@ 2007-06-14  9:09 Gerrit Pape
  2007-06-14 10:19 ` Andy Parkins
  0 siblings, 1 reply; 4+ messages in thread
From: Gerrit Pape @ 2007-06-14  9:09 UTC (permalink / raw)
  To: Junio C Hamano, git; +Cc: 428413

The post-receive-email hook usually gets its arguments through stdin, but
also supports them to be specified at the command line.  The order of the
arguments should consistently follow the documentation no matter how they
are passed to the script.

This was noticed and suggested by martin f krafft through
 http://bugs.debian.org/428413

Signed-off-by: Gerrit Pape <pape@smarden.org>
---
 contrib/hooks/post-receive-email |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/contrib/hooks/post-receive-email b/contrib/hooks/post-receive-email
index c589a39..f84532f 100644
--- a/contrib/hooks/post-receive-email
+++ b/contrib/hooks/post-receive-email
@@ -605,7 +605,7 @@ envelopesender=$(git-repo-config hooks.envelopesender)
 if [ -n "$1" -a -n "$2" -a -n "$3" ]; then
 	# Output to the terminal in command line mode - if someone wanted to
 	# resend an email; they could redirect the output to sendmail themselves
-	PAGER= generate_email $2 $3 $1
+	PAGER= generate_email $1 $2 $3
 else
 	if [ -n "$envelopesender" ]; then
 		envelopesender="-f '$envelopesender'"
-- 
1.5.2.1

^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2007-08-07 17:38 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-06-14  9:09 [PATCH] post-receive-email hook: handle order of arguments consistently Gerrit Pape
2007-06-14 10:19 ` Andy Parkins
2007-08-07 13:58   ` Gerrit Pape
2007-08-07 17:38     ` Andy Parkins

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).