From c19e861709d0a6891d10d616fcdb6fcdade54679 Mon Sep 17 00:00:00 2001 From: Cheng Pan Date: Mon, 6 Sep 2021 10:26:03 +0800 Subject: [PATCH] [KYUUBI #1024][FOLLOWUP] Fix source release folder name ### _Why are the changes needed?_ ### _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/latest/develop_tools/testing.html#running-tests) locally before make a pull request Closes #1030 from pan3793/pkg. Closes #1024 4fad69f9 [Cheng Pan] [KYUUBI #1024][FOLLOWUP] Fix source release folder name Authored-by: Cheng Pan Signed-off-by: Cheng Pan (cherry picked from commit 057bac19136466da5adb5149506a09b451672d30) Signed-off-by: Cheng Pan --- build/release/create-package.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/release/create-package.sh b/build/release/create-package.sh index 7c81a781d..9b0bb9f45 100755 --- a/build/release/create-package.sh +++ b/build/release/create-package.sh @@ -58,7 +58,7 @@ package_source() { echo "Creating source release tarball ${SRC_TGZ_FILE}" - git archive --prefix="kyuubi-${RELEASE_VERSION}-source/" -o "${SRC_TGZ}" HEAD + git archive --prefix="apache-kyuubi-${RELEASE_VERSION}-source/" -o "${SRC_TGZ}" HEAD if [ "$SKIP_GPG" == "false" ] ; then gpg --armor --detach-sig "${SRC_TGZ}"