From: Jim Meyering Date: Thu, 28 Dec 2006 15:05:02 +0000 (+0100) Subject: update hook: redirect _both_ diagnostic lines to stderr upon tag failure X-Git-Tag: v1.5.0-rc1~163 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=b81ba571242a1b64b4fbda215ea38dd062f2b05f;p=git.git update hook: redirect _both_ diagnostic lines to stderr upon tag failure Otherwise, sending the diagnostic to stdout would provoke a protocol failure. Signed-off-by: Jim Meyering Signed-off-by: Junio C Hamano --- diff --git a/templates/hooks--update b/templates/hooks--update index 76d5ac247..9863a800c 100644 --- a/templates/hooks--update +++ b/templates/hooks--update @@ -19,7 +19,7 @@ ref_type=$(git cat-file -t "$3") case "$1","$ref_type" in refs/tags/*,commit) echo "*** Un-annotated tags are not allowed in this repo" >&2 - echo "*** Use 'git tag [ -a | -s ]' for tags you want to propagate." + echo "*** Use 'git tag [ -a | -s ]' for tags you want to propagate." >&2 exit 1;; refs/tags/*,tag) echo "### Pushing version '${1##refs/tags/}' to the masses" >&2