This is an automated email from the ASF dual-hosted git repository.
ulyssesyou pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-kyuubi.git
The following commit(s) were added to refs/heads/master by this push:
new 995c74b [KYUUBI #1409] [MINOR] Fix the missing suffix of tarball
995c74b is described below
commit 995c74b8ee9f8e1e2decbf6f703066c1ba2a90e2
Author: sunfangbin <[email protected]>
AuthorDate: Thu Nov 18 14:49:45 2021 +0800
[KYUUBI #1409] [MINOR] Fix the missing suffix of tarball
### _Why are the changes needed?_
Fixes the missing suffix of tarball, which should be `$TARDIR_NAME.tgz`.
### _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
- [x] [Run
test](https://kyuubi.readthedocs.io/en/latest/develop_tools/testing.html#running-tests)
locally before make a pull request
Closes #1409 from murong00/branch-1409.
Closes #1409
2ba2718a [sunfangbin] Fix the missing suffix of tarball
Authored-by: sunfangbin <[email protected]>
Signed-off-by: ulysses-you <[email protected]>
---
build/dist | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/build/dist b/build/dist
index 2e1e40c..64f1431 100755
--- a/build/dist
+++ b/build/dist
@@ -233,5 +233,5 @@ if [[ "$MAKE_TGZ" == "true" ]]; then
cp -r "$DISTDIR" "$TARDIR"
tar czf "$TARDIR_NAME.tgz" -C "$KYUUBI_HOME" "$TARDIR_NAME"
rm -rf "$TARDIR"
- echo "The Kyuubi tarball $TARDIR_NAME is successfully generated in
$KYUUBI_HOME."
+ echo "The Kyuubi tarball $TARDIR_NAME.tgz is successfully generated in
$KYUUBI_HOME."
fi