This is an automated email from the ASF dual-hosted git repository.
schultz pushed a commit to branch 9.0.x
in repository https://gitbox.apache.org/repos/asf/tomcat.git
The following commit(s) were added to refs/heads/9.0.x by this push:
new f7a509e99d Improve verify-release target.
f7a509e99d is described below
commit f7a509e99d5ef933c5b10472d779b978fe9ab486
Author: schultz <[email protected]>
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 84322a1564..f252a74ffb 100644
--- a/build.xml
+++ b/build.xml
@@ -4049,7 +4049,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: [email protected]
For additional commands, e-mail: [email protected]