File tree Expand file tree Collapse file tree 1 file changed +0
-9
lines changed
Expand file tree Collapse file tree 1 file changed +0
-9
lines changed Original file line number Diff line number Diff line change 3737# Find all jacoco-ut.exec files dynamically
3838EXEC_FILES=($( find " $PROJECT_ROOT " -name " jacoco-ut.exec" -type f) )
3939
40- # Debug: Print found exec files
41- echo " DEBUG: Found execution data files:"
42- for exec_file in " ${EXEC_FILES[@]} " ; do
43- echo " DEBUG: $exec_file "
44- done
45-
4640# Check if any execution data files were found
4741if [ ${# EXEC_FILES[@]} -eq 0 ]; then
4842 echo " Error: No jacoco-ut.exec files found in $PROJECT_ROOT "
@@ -78,9 +72,6 @@ for exec_file in "${EXEC_FILES[@]}"; do
7872 module_path=$( dirname " $( dirname " $( dirname " $exec_file " ) " ) " )
7973 module_name=$( basename " $module_path " )
8074
81- # Debug: Print module paths
82- echo " DEBUG: Module path: $module_path "
83-
8475 # Add classfiles and sourcefiles arguments
8576 CLASSFILES_ARGS+=(" --classfiles" " $module_path /target/classes" )
8677 SOURCEFILES_ARGS+=(" --sourcefiles" " $module_path /src/main/java" )
You can’t perform that action at this time.
0 commit comments