This is an automated email from the ASF dual-hosted git repository.
jbarrett pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/geode-examples.git
The following commit(s) were added to refs/heads/develop by this push:
new 6cc1d99 Uses tarTree to extract distribution.
6cc1d99 is described below
commit 6cc1d999d1269a11cbc3e8915336bad0dee874e3
Author: Jacob Barrett <[email protected]>
AuthorDate: Wed Sep 5 12:08:13 2018 -0700
Uses tarTree to extract distribution.
---
build.gradle | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/build.gradle b/build.gradle
index 04424b6..d7810b4 100644
--- a/build.gradle
+++ b/build.gradle
@@ -47,7 +47,7 @@ dependencies {
}
task installGeode(type: Copy) {
- from zipTree(configurations.geodeDistribution.singleFile)
+ from tarTree(configurations.geodeDistribution.singleFile)
into buildDir
}