You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by ns...@apache.org on 2012/12/01 23:49:57 UTC

git commit: Make Git invokation fail gracefully

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 <ns...@apache.org>
Authored: Sat Dec 1 22:49:53 2012 +0000
Committer: Noah Slater <ns...@apache.org>
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