Make the hooks.emailmaxlines configuration option work correctly
again. It looks like this was broken by 53cad691.
Signed-off-by: Mike Crowe <redacted>
---
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