#!/bin/sh
#
# This is a generic update hook script for GIT repositories.
+# Written by Martin Mares <mj@ucw.cz> based on the template from GIT distribution.
#
# Called by git-receive-pack with arguments: refname sha1-old sha1-new
#
-# Expects the following environment variables:
+# Expects the following environment variables to be set:
#
# recipient where to send the mail reports to
# sub_prefix prefix which should be prepended to mail subject
exec >&2
mutt -F/dev/null -x -e 'set charset="utf-8"; set send_charset="us-ascii:iso-8859-2:utf-8"' -s "$subj" "$recipient" <$out
-rm $out
+#rm $out
exit 0