This is an automated email from the ASF dual-hosted git repository.
schultz pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tomcat.git
The following commit(s) were added to refs/heads/main by this push:
new 1c527d6354 Improve verify-release target.
1c527d6354 is described below
commit 1c527d63545d93cd6d951f0d7b237095fd2bca87
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 1e34ab3426..fbf45f9336 100644
--- a/build.xml
+++ b/build.xml
@@ -4037,7 +4037,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]