Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'production/reports/jdepsReport.sh')
-rwxr-xr-xproduction/reports/jdepsReport.sh5
1 files changed, 3 insertions, 2 deletions
diff --git a/production/reports/jdepsReport.sh b/production/reports/jdepsReport.sh
index 868b56eba..41c2b9d21 100755
--- a/production/reports/jdepsReport.sh
+++ b/production/reports/jdepsReport.sh
@@ -52,9 +52,10 @@ do
fileSize=$(stat -c %s ${outputFile}.interim)
if [ $fileSize -gt 0 ]
then
- echo -e "\n###### Java internal API usage report for $(basename ${i}) \n">> ${outputFile}
+ echo -e "\n###### Start of Java internal API usage report for $(basename ${i}) \n">> ${outputFile}
cat ${outputFile}.interim >> ${outputFile}
- echo -e "\n\n" >> ${outputFile}
+ echo -e "\n###### End of Java internal API usage report for $(basename ${i}) \n">> ${outputFile}
+ echo -e "\n" >> ${outputFile}
rm ${outputFile}.interim
fi
done

Back to the top