You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@eventmesh.apache.org by mi...@apache.org on 2022/01/06 13:27:37 UTC

[incubator-eventmesh] branch master updated: [MINOR] Change Tar and Zip name (#699)

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

mikexue pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-eventmesh.git


The following commit(s) were added to refs/heads/master by this push:
     new a9d102c  [MINOR] Change Tar and Zip name (#699)
a9d102c is described below

commit a9d102c96fd0a43aefa4bc44da496e77889fc09a
Author: Wenjun Ruan <we...@apache.org>
AuthorDate: Thu Jan 6 21:27:35 2022 +0800

    [MINOR] Change Tar and Zip name (#699)
---
 build.gradle | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/build.gradle b/build.gradle
index 307c53e..4f7e7f6 100644
--- a/build.gradle
+++ b/build.gradle
@@ -80,7 +80,7 @@ allprojects {
 task tar(type: Tar) {
     extension = 'tar.gz'
     compression = Compression.GZIP
-    archiveFileName = project.name + '_' + project.version + '.' + extension
+    archiveFileName = project.name + '-' + project.version + '.' + extension
     destinationDirectory = new File(projectDir, 'build')
     into('/') {
         from 'dist'
@@ -89,7 +89,7 @@ task tar(type: Tar) {
 
 task zip(type: Zip) {
     extension = 'zip'
-    archiveFileName = project.name + '.' + project.version + '.' + extension
+    archiveFileName = project.name + '-' + project.version + '.' + extension
     destinationDirectory = new File(projectDir, 'build')
     into('/') {
         from 'dist'

---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@eventmesh.apache.org
For additional commands, e-mail: commits-help@eventmesh.apache.org