From 8c4d1aa10caa81ce0d2e4c5b71eab8e357cb5f0f Mon Sep 17 00:00:00 2001 From: Sitaram Chamarty Date: Sun, 4 Dec 2011 07:09:32 +0530 Subject: [PATCH] minor fixup to 54f5906d ("add the missing die function") --- hooks/common/post-receive.mirrorpush | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hooks/common/post-receive.mirrorpush b/hooks/common/post-receive.mirrorpush index 7704b4d..4b31741 100755 --- a/hooks/common/post-receive.mirrorpush +++ b/hooks/common/post-receive.mirrorpush @@ -4,7 +4,7 @@ # please see doc/mirroring.mkd for instructions on how to use this -die() { echo post-receive.mirrorpush: "$@" >&2; exit 1; } +die() { echo $0 "(post-receive.mirrorpush):" "$@" >&2; exit 1; } # flush STDIN coming from git; we have no use for that info in this hook but # if you don't do this, git-shell sometimes dies of a signal 13 (SIGPIPE)