зеркало из https://github.com/microsoft/git.git
fix contrib/hooks/post-receive-email hooks.recipients error message
Have the error message for missing recipients actually report the missing config variable and not a fictional one. Signed-off-by: Lars Hjemli <hjemli@gmail.com> Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
This commit is contained in:
Родитель
0c696fe7f4
Коммит
fdfeb87c14
|
@ -138,7 +138,15 @@ generate_email()
|
||||||
|
|
||||||
# Check if we've got anyone to send to
|
# Check if we've got anyone to send to
|
||||||
if [ -z "$recipients" ]; then
|
if [ -z "$recipients" ]; then
|
||||||
echo >&2 "*** hooks.recipients is not set so no email will be sent"
|
case "$refname_type" in
|
||||||
|
"annotated tag")
|
||||||
|
config_name="hooks.announcelist"
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
config_name="hooks.mailinglist"
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
echo >&2 "*** $config_name is not set so no email will be sent"
|
||||||
echo >&2 "*** for $refname update $oldrev->$newrev"
|
echo >&2 "*** for $refname update $oldrev->$newrev"
|
||||||
exit 0
|
exit 0
|
||||||
fi
|
fi
|
||||||
|
|
Загрузка…
Ссылка в новой задаче