You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kyuubi.apache.org by ch...@apache.org on 2023/02/20 09:06:50 UTC

[kyuubi] branch branch-1.7 updated: [KYUUBI #4373] Using SVN_STAGING_REPO instead of SVN_STAGING_REPO in the release script to fix echo message

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

chengpan pushed a commit to branch branch-1.7
in repository https://gitbox.apache.org/repos/asf/kyuubi.git


The following commit(s) were added to refs/heads/branch-1.7 by this push:
     new 2eb9f964b [KYUUBI #4373] Using SVN_STAGING_REPO instead of SVN_STAGING_REPO in the release script to fix echo message
2eb9f964b is described below

commit 2eb9f964b62e36ec83f0ca99e854cbcf87fa25d9
Author: Cheng Pan <ch...@apache.org>
AuthorDate: Mon Feb 20 17:05:32 2023 +0800

    [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 <ch...@apache.org>
    Signed-off-by: Cheng Pan <ch...@apache.org>
---
 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}"