From 2f45e34dc382ffff3ec41abc956ea5f21ed106d8 Mon Sep 17 00:00:00 2001 From: Cheng Pan Date: Wed, 15 Dec 2021 21:23:10 +0800 Subject: [PATCH] [KYUUBI #1571] [BUILD] Correct build command in build/dist ### _Why are the changes needed?_ `mvn install` is required because of `kyuubi-hive-jdbc-shaded` ### _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 #1571 from pan3793/dist. Closes #1571 c905411c [Cheng Pan] Correct build command in build/dist Authored-by: Cheng Pan Signed-off-by: Cheng Pan --- build/dist | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/dist b/build/dist index a4ef98203..5ab4b04f4 100755 --- a/build/dist +++ b/build/dist @@ -166,7 +166,7 @@ if [[ "$SPARK_PROVIDED" == "true" ]]; then MVN_DIST_OPT="$MVN_DIST_OPT -Pspark-provided" fi -BUILD_COMMAND=("$MVN" clean package $MVN_DIST_OPT $@) +BUILD_COMMAND=("$MVN" clean install $MVN_DIST_OPT $@) echo -e "\nBuilding with..." echo -e "\$ ${BUILD_COMMAND[@]}\n"