From ff8aeee39beb6005a6354aff4bf055f75fc7b0b1 Mon Sep 17 00:00:00 2001 From: Hiroki Terashima Date: Wed, 23 Sep 2026 09:47:05 -0700 Subject: [PATCH] chore(Tomcat): upgrade to 10.1.60 --- scripts/beforeInstall.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/beforeInstall.sh b/scripts/beforeInstall.sh index 0e347234f..e266da03c 100644 --- a/scripts/beforeInstall.sh +++ b/scripts/beforeInstall.sh @@ -50,10 +50,10 @@ echo "Making tomcat the owner of the tomcat directory" chown tomcat:tomcat $CATALINA_HOME echo "Downloading Tomcat 10" -wget -P /tmp https://archive.apache.org/dist/tomcat/tomcat-10/v10.1.59/bin/apache-tomcat-10.1.59.tar.gz +wget -P /tmp https://archive.apache.org/dist/tomcat/tomcat-10/v10.1.60/bin/apache-tomcat-10.1.60.tar.gz echo "Unpackaging Tomcat 10 to $CATALINA_HOME" -tar xzvf /tmp/apache-tomcat-10.1.59.tar.gz -C $CATALINA_HOME --strip-components=1 +tar xzvf /tmp/apache-tomcat-10.1.60.tar.gz -C $CATALINA_HOME --strip-components=1 echo "Giving tomcat user ownership of tomcat directory contents" chown -R tomcat:tomcat $CATALINA_HOME