Return-Path: X-Original-To: apmail-couchdb-commits-archive@www.apache.org Delivered-To: apmail-couchdb-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 83BECD1F0 for ; Sat, 1 Dec 2012 22:49:57 +0000 (UTC) Received: (qmail 72469 invoked by uid 500); 1 Dec 2012 22:49:57 -0000 Delivered-To: apmail-couchdb-commits-archive@couchdb.apache.org Received: (qmail 72404 invoked by uid 500); 1 Dec 2012 22:49:57 -0000 Mailing-List: contact commits-help@couchdb.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@couchdb.apache.org Delivered-To: mailing list commits@couchdb.apache.org Received: (qmail 72396 invoked by uid 99); 1 Dec 2012 22:49:57 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 01 Dec 2012 22:49:57 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 2EACC816B86; Sat, 1 Dec 2012 22:49:57 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: nslater@apache.org To: commits@couchdb.apache.org X-Mailer: ASF-Git Admin Mailer Subject: git commit: Make Git invokation fail gracefully Message-Id: <20121201224957.2EACC816B86@tyr.zones.apache.org> Date: Sat, 1 Dec 2012 22:49:57 +0000 (UTC) Updated Branches: refs/heads/docs 16e33a448 -> 4f62b4b0b Make Git invokation fail gracefully Project: http://git-wip-us.apache.org/repos/asf/couchdb/repo Commit: http://git-wip-us.apache.org/repos/asf/couchdb/commit/4f62b4b0 Tree: http://git-wip-us.apache.org/repos/asf/couchdb/tree/4f62b4b0 Diff: http://git-wip-us.apache.org/repos/asf/couchdb/diff/4f62b4b0 Branch: refs/heads/docs Commit: 4f62b4b0b6ec1a355ab99c37057cb4fcc2dbc2a6 Parents: 16e33a4 Author: Noah Slater Authored: Sat Dec 1 22:49:53 2012 +0000 Committer: Noah Slater Committed: Sat Dec 1 22:49:53 2012 +0000 ---------------------------------------------------------------------- Makefile.am | 10 +++++----- 1 files changed, 5 insertions(+), 5 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/couchdb/blob/4f62b4b0/Makefile.am ---------------------------------------------------------------------- diff --git a/Makefile.am b/Makefile.am index 3a667ff..9521514 100644 --- a/Makefile.am +++ b/Makefile.am @@ -82,15 +82,15 @@ README.gz: README # Huge bodge that will be fixed with COUCHDB-1618 THANKS.gz: $(top_srcdir)/THANKS - @sed -e '/^#.*/d' $< > $(top_builddir)/THANKS.tmp - @git shortlog -se 6c976bd..HEAD \ + sed -e '/^#.*/d' $< > $(top_builddir)/THANKS.tmp + -git shortlog -se 6c976bd..HEAD \ | grep -v @apache.org \ | sed -E 's/^[[:blank:]]{5}[[:digit:]]+[[:blank:]]/ * /' \ >> $(top_builddir)/THANKS.tmp - @echo '\nFor a list of authors see the `AUTHORS` file.\n' \ + echo '\nFor a list of authors see the `AUTHORS` file.\n' \ >> $(top_builddir)/THANKS.tmp - -gzip -9 < $(top_builddir)/THANKS.tmp > $@ - @rm $(top_builddir)/THANKS.tmp + gzip -9 < $(top_builddir)/THANKS.tmp > $@ + rm $(top_builddir)/THANKS.tmp check: dev check-js if TESTS