From de8198487c00a846b75ee59434d81d1186941673 Mon Sep 17 00:00:00 2001 From: anti Date: Tue, 30 Dec 2025 13:25:40 -0300 Subject: [PATCH] fix: reports were kinda mangled. changed a make_text function call --- main.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.sh b/main.sh index 196a617..ac01175 100755 --- a/main.sh +++ b/main.sh @@ -104,7 +104,7 @@ make_report() { make_text "found $(wc -l "$REPORT"/"$REPORT"_timeout.txt | cut -d" " -f1) timeouts." warn make_text "found $(wc -l "$REPORT"/"$REPORT"_connissues.txt | cut -d" " -f1) sites with connection issues." warn make_text "found $(wc -l "$REPORT"/"$REPORT"_unresolved.txt | cut -d" " -f1) sites with unresolved IP addresses." warn - make_text "found $(grep -cviE "not resolve|not connect|timed out" "$REPORT"/"$REPORT".txt) sites with unresolved IP addresses." ok + make_text "found $(grep -cviE "not resolve|not connect|timed out" "$REPORT"/"$REPORT".txt) sites that are okay." ok make_text "reports ready. good luck :)" ok }