diff options
author | Sitaram Chamarty <sitaramc@gmail.com> | 2011-02-03 06:30:32 +0530 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2011-02-07 14:28:21 -0800 |
commit | 80aa55b40ba36a4d0c43d6348a2831b0c6f17e62 (patch) | |
tree | 4307783bcdfa07308cf46fe32a1a70b2fdfd2230 | |
parent | c91897b3b074d5185c3897e7afc41aa091f6ec66 (diff) | |
download | git-80aa55b40ba36a4d0c43d6348a2831b0c6f17e62.tar.gz git-80aa55b40ba36a4d0c43d6348a2831b0c6f17e62.tar.xz |
post-receive-email: suppress error if description file missing
Signed-off-by: Sitaram Chamarty <sitaramc@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rwxr-xr-x | contrib/hooks/post-receive-email | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/hooks/post-receive-email b/contrib/hooks/post-receive-email index f99ea9585..21989fc6a 100755 --- a/contrib/hooks/post-receive-email +++ b/contrib/hooks/post-receive-email @@ -709,7 +709,7 @@ if [ -z "$GIT_DIR" ]; then exit 1 fi -projectdesc=$(sed -ne '1p' "$GIT_DIR/description") +projectdesc=$(sed -ne '1p' "$GIT_DIR/description" 2>/dev/null) # Check if the description is unchanged from it's default, and shorten it to # a more manageable length if it is if expr "$projectdesc" : "Unnamed repository.*$" >/dev/null |