You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@aurora.apache.org by ke...@apache.org on 2014/07/29 01:38:53 UTC

git commit: Make bootstrapThrift quiet.

Repository: incubator-aurora
Updated Branches:
  refs/heads/master c97ab6327 -> 78ae04c59


Make bootstrapThrift quiet.

Testing Done:
./gradlew build
./gradlew --info build

Reviewed at https://reviews.apache.org/r/24017/


Project: http://git-wip-us.apache.org/repos/asf/incubator-aurora/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-aurora/commit/78ae04c5
Tree: http://git-wip-us.apache.org/repos/asf/incubator-aurora/tree/78ae04c5
Diff: http://git-wip-us.apache.org/repos/asf/incubator-aurora/diff/78ae04c5

Branch: refs/heads/master
Commit: 78ae04c59931b18f2ffb52053da26d72658f1890
Parents: c97ab63
Author: Kevin Sweeney <ke...@apache.org>
Authored: Mon Jul 28 16:38:19 2014 -0700
Committer: Kevin Sweeney <ke...@apache.org>
Committed: Mon Jul 28 16:38:19 2014 -0700

----------------------------------------------------------------------
 build-support/thrift/Makefile | 2 +-
 build.gradle                  | 2 ++
 2 files changed, 3 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-aurora/blob/78ae04c5/build-support/thrift/Makefile
----------------------------------------------------------------------
diff --git a/build-support/thrift/Makefile b/build-support/thrift/Makefile
index af3106e..2b62b15 100644
--- a/build-support/thrift/Makefile
+++ b/build-support/thrift/Makefile
@@ -20,7 +20,7 @@ THRIFT = ./thrift-$(THRIFT_VERSION)/compiler/cpp/thrift
 all: $(THRIFT)
 
 $(THRIFT):
-	curl $(THRIFT_URL) | tar zxv
+	curl -s $(THRIFT_URL) | tar zxv
 	(cd $(THRIFT_DISTNAME) && ./configure --without-tests --without-php --without-php_extension \
 		--without-ruby --without-haskell --without-d --without-go --without-perl --without-python \
 		--without-erlang --without-java --without-c_glib)

http://git-wip-us.apache.org/repos/asf/incubator-aurora/blob/78ae04c5/build.gradle
----------------------------------------------------------------------
diff --git a/build.gradle b/build.gradle
index df0af98..5919a98 100644
--- a/build.gradle
+++ b/build.gradle
@@ -360,6 +360,8 @@ tasks.checkstyleMain.dependsOn(jsHint)
  * contain the path to the thrift executable when finished
  */
 task bootstrapThrift {
+  logging.captureStandardOutput LogLevel.INFO
+
   project.ext.set('thrift', '')
 
   try {