BIGTOP-2237. Nullify the standard output when generating gradle cache
Project: http://git-wip-us.apache.org/repos/asf/bigtop/repo Commit: http://git-wip-us.apache.org/repos/asf/bigtop/commit/15f4fec4 Tree: http://git-wip-us.apache.org/repos/asf/bigtop/tree/15f4fec4 Diff: http://git-wip-us.apache.org/repos/asf/bigtop/diff/15f4fec4 Branch: refs/heads/master Commit: 15f4fec4f3123905cac38d1d8515b6c6325a1f5b Parents: 1610271 Author: Evans Ye <[email protected]> Authored: Thu Jan 14 01:28:55 2016 +0800 Committer: Evans Ye <[email protected]> Committed: Fri Jan 15 00:02:28 2016 +0800 ---------------------------------------------------------------------- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/bigtop/blob/15f4fec4/build.gradle ---------------------------------------------------------------------- diff --git a/build.gradle b/build.gradle index e7cd663..1ca6000 100644 --- a/build.gradle +++ b/build.gradle @@ -382,7 +382,7 @@ task "gen-gradle-home"(type:Exec, group: DOCKERBUILD_GROUP) { def dir = System.getProperty("user.dir") def command = [ - './gradlew', '-g', dir + '/gradle.home' + './gradlew', '-g', dir + '/gradle.home > /dev/null' ] workingDir '.' commandLine command
