You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by on...@apache.org on 2020/04/26 17:04:16 UTC

[geode-examples] branch develop updated: GEODE-8026: name release artifacts consistently

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

onichols 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 ada4268  GEODE-8026: name release artifacts consistently
ada4268 is described below

commit ada42680b7d59ba923785b53da28a8cf244a23f4
Author: Owen Nichols <on...@pivotal.io>
AuthorDate: Sun Apr 26 10:03:59 2020 -0700

    GEODE-8026: name release artifacts consistently
---
 gradle/release.gradle | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gradle/release.gradle b/gradle/release.gradle
index 419dfd0..c1bff13 100644
--- a/gradle/release.gradle
+++ b/gradle/release.gradle
@@ -21,7 +21,7 @@ apply plugin: 'signing'
 gradle.taskGraph.whenReady( { graph ->
   tasks.withType(Tar).each { tar ->
     tar.compression = Compression.GZIP
-    tar.extension = 'tar.gz'
+    tar.extension = 'tgz'
   }
 })