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

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


The following commit(s) were added to refs/heads/10.1.x by this push:
     new fed3f575dd Improve verify-release target.
fed3f575dd is described below

commit fed3f575ddbefa33944b48352b7238580941f9f8
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 1d414d2996..b2276175f8 100644
--- a/build.xml
+++ b/build.xml
@@ -4110,7 +4110,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