This is an automated email from the ASF dual-hosted git repository.

schultz pushed a commit to branch 8.5.x
in repository https://gitbox.apache.org/repos/asf/tomcat.git

commit f0578c71e3770a1d3cd45ff9f1230d41f130fc17
Author: schultz <schu...@apache.org>
AuthorDate: Sun Dec 10 08:11:51 2023 -0800

    Improve verify-release target.
    
    Don't fail if a relase hash file does not exist.
---
 build.xml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/build.xml b/build.xml
index feccef8c4e..e2645f50ae 100644
--- a/build.xml
+++ b/build.xml
@@ -3615,7 +3615,8 @@ Read the Building page on the Apache Tomcat documentation 
site for details on ho
 
     <sequential>
       <local name="contents" />
-      <loadfile property="contents" srcfile="@{file}" />
+      <loadfile property="contents" srcfile="@{file}" quiet="true" 
failonerror="false" />
+      <property name="contents" value="(missing file)" /><!-- Establish 
default value -->
       <echo>${contents}</echo>
     </sequential>
   </macrodef>


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org

Reply via email to