You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@edgent.apache.org by dl...@apache.org on 2016/12/14 19:24:33 UTC

[43/50] [abbrv] incubator-edgent git commit: fix "incubating" in release bundle name

fix "incubating" in release bundle name

Project: http://git-wip-us.apache.org/repos/asf/incubator-edgent/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-edgent/commit/205374e2
Tree: http://git-wip-us.apache.org/repos/asf/incubator-edgent/tree/205374e2
Diff: http://git-wip-us.apache.org/repos/asf/incubator-edgent/diff/205374e2

Branch: refs/heads/master
Commit: 205374e285288ab5ab53661c88ae49e007cbdca8
Parents: bead295
Author: Dale LaBossiere <dl...@us.ibm.com>
Authored: Mon Nov 21 18:09:00 2016 -0500
Committer: Dale LaBossiere <dl...@us.ibm.com>
Committed: Mon Nov 21 18:09:00 2016 -0500

----------------------------------------------------------------------
 build.gradle | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-edgent/blob/205374e2/build.gradle
----------------------------------------------------------------------
diff --git a/build.gradle b/build.gradle
index 1843999..e6a3c41 100644
--- a/build.gradle
+++ b/build.gradle
@@ -705,7 +705,7 @@ task addVersionDotTxt {
 
 task releaseTarGz(type: Tar) {
   description = 'Create binary release tgz in target_dir'
-  archiveName = "apache-${build_name}-${build_version}-incubating-${snapshotId}-bin.tgz"
+  archiveName = "apache-${build_name}-${build_version}-incubating${snapshotId}-bin.tgz"
   compression = Compression.GZIP
   destinationDir = new File("${target_dir}/../release-edgent")
   duplicatesStrategy 'exclude'
@@ -730,7 +730,7 @@ task releaseTarGz(type: Tar) {
 
 task srcReleaseTarGz(type: Tar) {
   description = 'Create source release tgz in target_dir'
-  archiveName = "apache-${build_name}-${build_version}-incubating-${snapshotId}-src.tgz"
+  archiveName = "apache-${build_name}-${build_version}-incubating${snapshotId}-src.tgz"
   compression = Compression.GZIP
   destinationDir = new File("${target_dir}/../release-edgent")
   duplicatesStrategy 'exclude'