From 971664b3f770dfb09c6743ae23e33f5176deb0dd Mon Sep 17 00:00:00 2001 From: Yegor Bugayenko Date: Sun, 3 Mar 2024 07:31:09 +0300 Subject: [PATCH] #185 better log in the end --- steps/zip.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/steps/zip.sh b/steps/zip.sh index a4cd6bfd..3b21b978 100755 --- a/steps/zip.sh +++ b/steps/zip.sh @@ -48,3 +48,9 @@ zip -qq -x "temp/*" -x "measurements/*" -r "${zip}" . mv "${zip}" "${TARGET}" echo "ZIP archive created at ${zip} ($(du -k "${TARGET}/${name}.zip" | cut -f1) Kb)$("${LOCAL}/help/tdiff.sh" "${start}")" + +echo "Lines in repositories.csv: $(wc -l "${TARGET}/repositories.csv" | xargs)" +echo ".java files in github/: $(find "${TARGET}/github" -name '*.java' -type f -print | wc -l | xargs)" +echo "Lines in data/all.csv: $(wc -l "${TARGET}/data/all.csv" | xargs)" +echo ".csv files in data/: $(find "${TARGET}/data" -name '*.csv' -type f -print | wc -l | xargs)" +