From bd01bed62ffb3acd0d313df8acd195ac34841838 Mon Sep 17 00:00:00 2001 From: Darin Kelkhoff Date: Fri, 12 Apr 2024 09:04:55 -0500 Subject: [PATCH] Fix to check if html2text is installed, before trying to report on un-covered classes (since that's the script we use, and we do install it in circleci) --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 79723366..dbf6499a 100644 --- a/pom.xml +++ b/pom.xml @@ -255,7 +255,7 @@ else echo "xpath is not installed. Jacoco coverage summary will not be produced here..."; fi -which xpath > /dev/null 2>&1 +which html2text > /dev/null 2>&1 if [ "$?" == "0" ]; then echo "Untested classes, per Jacoco:" echo "-----------------------------"