This is an automated email from the ASF dual-hosted git repository. dbecker pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/impala.git
commit db92c88a4cd4e5cad993e213685f4e980b6d7cc1 Author: Michael Smith <michael.sm...@cloudera.com> AuthorDate: Wed Sep 3 15:35:23 2025 -0700 IMPALA-13417: Run mvn clean on all Java projects Runs mvn clean on all Java subprojects - instead of just ext-data-source - to avoid build failures when files from other versions of the code and dependencies are left behind. Change-Id: I8cf540f90adbff327de98f900059bfa3bbc8ef22 Reviewed-on: http://gerrit.cloudera.org:8080/23374 Reviewed-by: Impala Public Jenkins <impala-public-jenk...@cloudera.com> Tested-by: Impala Public Jenkins <impala-public-jenk...@cloudera.com> --- bin/clean.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bin/clean.sh b/bin/clean.sh index 0e685542a..8a4f45371 100755 --- a/bin/clean.sh +++ b/bin/clean.sh @@ -29,9 +29,9 @@ setup_report_build_error # Combine the make command with the bash noop to always return true. "${MAKE_CMD:-make}" clean || : -# clean the external data source project -pushd "${IMPALA_HOME}/java/ext-data-source" -rm -rf api/generated-sources/* +# clean Java projects +pushd "${IMPALA_HOME}/java" +rm -rf ext-data-source/api/generated-sources/* ${IMPALA_HOME}/bin/mvn-quiet.sh clean popd