Skip to content

Commit 2f45e34

Browse files
committed
[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 c905411 [Cheng Pan] Correct build command in build/dist Authored-by: Cheng Pan <chengpan@apache.org> Signed-off-by: Cheng Pan <chengpan@apache.org>
1 parent f841da4 commit 2f45e34

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build/dist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ if [[ "$SPARK_PROVIDED" == "true" ]]; then
166166
MVN_DIST_OPT="$MVN_DIST_OPT -Pspark-provided"
167167
fi
168168

169-
BUILD_COMMAND=("$MVN" clean package $MVN_DIST_OPT $@)
169+
BUILD_COMMAND=("$MVN" clean install $MVN_DIST_OPT $@)
170170

171171
echo -e "\nBuilding with..."
172172
echo -e "\$ ${BUILD_COMMAND[@]}\n"

0 commit comments

Comments
 (0)