From abf644d667ae734796da2c1485d9d30a21c69f84 Mon Sep 17 00:00:00 2001 From: Paul Caskey Date: Fri, 13 Feb 2026 15:33:28 +0000 Subject: [PATCH] FIX: Tomcat version test bound to 10.x --- tests/checktomcatver.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/checktomcatver.sh b/tests/checktomcatver.sh index ec65630..7a034ed 100755 --- a/tests/checktomcatver.sh +++ b/tests/checktomcatver.sh @@ -51,7 +51,7 @@ if [ -z "$(echo $tomcatver | xargs)" ]; then fi #check if that version of tomcat is available in the download area (return is 0 if current, non-zero if not current) -wget -q --spider https://dlcdn.apache.org/tomcat/tomcat-10/v${tomcatver}/bin/apache-tomcat-${tomcatver}.tar.gz +wget -q --spider https://dlcdn.apache.org/tomcat/tomcat-11/v${tomcatver}/bin/apache-tomcat-${tomcatver}.tar.gz if [ $? == '0' ]; then echo "Running Tomcat version (${tomcatver}) is current!"