This is an automated email from the ASF dual-hosted git repository.
markt 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 71185c2a2c Fix broken verify-release task if gpg is not on the path
71185c2a2c is described below
commit 71185c2a2cc77f5f42a87cd04f141bb1f7515fc0
Author: Mark Thomas <[email protected]>
AuthorDate: Thu Nov 6 16:55:27 2025 +0000
Fix broken verify-release task if gpg is not on the path
---
build.xml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/build.xml b/build.xml
index 81251e7824..410a84355c 100644
--- a/build.xml
+++ b/build.xml
@@ -4522,7 +4522,7 @@ It appears there are no build artifacts to verify. Please
run 'ant release' firs
<mkdir dir="${tomcat.release.verify}" />
<!-- <chmod dir="${tomcat.release.verify}" perm="700"/>--><!-- To make gpg
happy -->
- <exec executable="gpg" failonerror="false"><!-- Not sure why this returns
2 on 'success?' -->
+ <exec executable="${gpg.exec}" failonerror="false"><!-- Not sure why this
returns 2 on 'success?' -->
<arg value="--no-default-keyring" />
<arg value="--primary-keyring" />
<arg value="${tomcat.release.verify}/apache-keys"/>
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]