* [PATCH] post-receive-email: Fix handling of hooks.emailmaxlines configuration option
@ 2011-08-11 17:13 Mike Crowe
0 siblings, 0 replies; only message in thread
From: Mike Crowe @ 2011-08-11 17:13 UTC (permalink / raw)
To: git; +Cc: mac
Make the hooks.emailmaxlines configuration option work correctly
again. It looks like this was broken by 53cad691.
Signed-off-by: Mike Crowe <mac@mcrowe.com>
---
contrib/hooks/post-receive-email | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/contrib/hooks/post-receive-email b/contrib/hooks/post-receive-email
index fa6d41a..ab6d298 100755
--- a/contrib/hooks/post-receive-email
+++ b/contrib/hooks/post-receive-email
@@ -85,7 +85,6 @@ prep_for_email()
oldrev=$(git rev-parse $1)
newrev=$(git rev-parse $2)
refname="$3"
- maxlines=$4
# --- Interpret
# 0000->1234 (create)
@@ -198,6 +197,8 @@ prep_for_email()
generate_email()
{
# Email parameters
+ maxlines=$1
+
# The email subject will contain the best description of the ref
# that we can build from the parameters
describe=$(git describe $rev 2>/dev/null)
--
1.7.2.5
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2011-08-11 17:42 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-08-11 17:13 [PATCH] post-receive-email: Fix handling of hooks.emailmaxlines configuration option Mike Crowe
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).