From 0dce65d3867e728fdd6b6894ae4efcd6ff4f7362 Mon Sep 17 00:00:00 2001 From: Cheng Pan Date: Mon, 20 Feb 2023 17:05:32 +0800 Subject: [PATCH] [KYUUBI #4373] Using SVN_STAGING_REPO instead of SVN_STAGING_REPO in the release script to fix echo message ### _Why are the changes needed?_ The uploading destination is the svn repo location, not the local temp folder. ### _How was this patch tested?_ - [ ] Add some test cases that check the changes thoroughly including negative and positive cases if possible - [ ] Add screenshots for manual tests if appropriate - [ ] [Run test](https://kyuubi.readthedocs.io/en/master/develop_tools/testing.html#running-tests) locally before make a pull request Closes #4373 from pan3793/minor. Closes #4373 96aa1d4c9 [Cheng Pan] Fix echo messeage in release script Authored-by: Cheng Pan Signed-off-by: Cheng Pan --- build/release/release.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/release/release.sh b/build/release/release.sh index 4afac3865..504bcfaf1 100755 --- a/build/release/release.sh +++ b/build/release/release.sh @@ -85,7 +85,7 @@ upload_svn_staging() { svn add "${SVN_STAGING_DIR}/${RELEASE_TAG}" - echo "Uploading release tarballs to ${SVN_STAGING_DIR}/${RELEASE_TAG}" + echo "Uploading release tarballs to ${SVN_STAGING_REPO}/${RELEASE_TAG}" ( cd "${SVN_STAGING_DIR}" && \ svn commit --username "${ASF_USERNAME}" --password "${ASF_PASSWORD}" --message "Apache Kyuubi ${RELEASE_TAG}"