You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by zh...@apache.org on 2020/08/19 03:29:02 UTC

[hbase] branch master updated: HBASE-24799 Do not call make_binary_release for hbase-thirdparty in release scripts (#2177)

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

zhangduo pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/hbase.git


The following commit(s) were added to refs/heads/master by this push:
     new 1231ac0  HBASE-24799 Do not call make_binary_release for hbase-thirdparty in release scripts (#2177)
1231ac0 is described below

commit 1231ac0784ef8781736daae8692597f1940b3dcb
Author: Duo Zhang <zh...@apache.org>
AuthorDate: Wed Aug 19 11:28:33 2020 +0800

    HBASE-24799 Do not call make_binary_release for hbase-thirdparty in release scripts (#2177)
    
    Signed-off-by: Peter Somogyi <ps...@apache.org>
---
 dev-support/create-release/release-build.sh | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/dev-support/create-release/release-build.sh b/dev-support/create-release/release-build.sh
index 225e2f0..db28f6f 100755
--- a/dev-support/create-release/release-build.sh
+++ b/dev-support/create-release/release-build.sh
@@ -213,7 +213,10 @@ if [[ "$1" == "publish-dist" ]]; then
   echo "Packaging release source tarballs"
   make_src_release "${PROJECT}" "${RELEASE_VERSION}"
 
-  make_binary_release "${PROJECT}" "${RELEASE_VERSION}"
+  # we do not have binary tarballs for hbase-thirdparty
+  if [[ "${PROJECT}" != "hbase-thirdparty" ]]; then
+    make_binary_release "${PROJECT}" "${RELEASE_VERSION}"
+  fi
 
   if [[ "$PROJECT" =~ ^hbase- ]]; then
     DEST_DIR_NAME="${PROJECT}-${package_version_name}"