HBASE-24799 Do not call make_binary_release for hbase-thirdparty in release scripts (#2177)

Signed-off-by: Peter Somogyi <psomogyi@apache.org>
This commit is contained in:
Duo Zhang 2020-08-19 11:28:33 +08:00 committed by GitHub
parent 7a4d7c8607
commit 1231ac0784
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 1 deletions

View File

@ -213,7 +213,10 @@ if [[ "$1" == "publish-dist" ]]; then
echo "Packaging release source tarballs"
make_src_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}"