Skip to content

Commit

Permalink
HBASE-24799 Do not call make_binary_release for hbase-thirdparty in r…
Browse files Browse the repository at this point in the history
…elease scripts (#2177)

Signed-off-by: Peter Somogyi <[email protected]>
  • Loading branch information
Apache9 authored Aug 19, 2020
1 parent 7a4d7c8 commit 1231ac0
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion dev-support/create-release/release-build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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}"
Expand Down

0 comments on commit 1231ac0

Please sign in to comment.