Skip to content

Commit

Permalink
HBASE-24799 Fix release scripts for hbase-thirdparty
Browse files Browse the repository at this point in the history
  • Loading branch information
Apache9 committed Aug 17, 2020
1 parent c81ef73 commit 7f76879
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
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
2 changes: 1 addition & 1 deletion dev-support/create-release/vote.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ The tag to be voted on is ${RELEASE_TAG}:
The release files, including signatures, digests, as well as CHANGES.md
and RELEASENOTES.md included in this RC can be found at:

https://dist.apache.org/repos/dist/dev/hbase/${RELEASE_TAG}/
https://dist.apache.org/repos/dist/dev/hbase/${DEST_DIR_NAME}/

Maven artifacts are available in a staging repository at:

Expand Down

0 comments on commit 7f76879

Please sign in to comment.