This is an automated email from the ASF dual-hosted git repository.

rhoughton pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/geode-examples.git

commit a85440c7758b4b3db0e38a3edd684872b0e101ce
Author: Owen Nichols <onich...@pivotal.io>
AuthorDate: Fri Jan 17 11:45:53 2020 -0800

    GEODE-7719: no need to create both .tar.gz AND .zip
    
    (cherry picked from commit 4cbc09452514e80a8fcf9d912a37daf612566bfd)
---
 gradle/release.gradle | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/gradle/release.gradle b/gradle/release.gradle
index 2a7f7fe..419dfd0 100644
--- a/gradle/release.gradle
+++ b/gradle/release.gradle
@@ -26,6 +26,12 @@ gradle.taskGraph.whenReady( { graph ->
 })
 
 gradle.taskGraph.whenReady( { graph ->
+  tasks.withType(Zip).each { zip ->
+    zip.enabled = false
+  }
+})
+
+gradle.taskGraph.whenReady( { graph ->
   tasks.withType(AbstractArchiveTask).findAll {
     it.name.toLowerCase().contains("dist")
   }.each { archive ->

Reply via email to