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 18:42:09 UTC

[geode-examples] 01/02: GEODE-8026: name release artifacts consistently

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

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

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

    GEODE-8026: name release artifacts consistently
    
    (cherry picked from commit ada42680b7d59ba923785b53da28a8cf244a23f4)
---
 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'
   }
 })