set ignoring files with less then 50 to 45

This commit is contained in:
olli 2023-05-17 11:05:46 +02:00
parent 11ade41d67
commit 934c5719d8

View File

@ -41,9 +41,9 @@ function analyze {
local f_strategy
lines=$(egrep "^${ANALYZE_TIME}" "$file" | grep -v ',,' | wc -l)
if [ $lines -lt 50 ]
if [ $lines -lt 40 ]
then
g_echo "Only $lines lines for given timeframe (${ANALYZE_TIME}) in $file - ignoring files with less then 50!"
g_echo "Only $lines lines for given timeframe (${ANALYZE_TIME}) in $file - ignoring files with less then 40!"
return 1
fi