This is an automated email from the ASF dual-hosted git repository.
markt 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 82cd912dd2 Fix broken verify-release task if gpg is not on the path
82cd912dd2 is described below
commit 82cd912dd2bbaf873c74db655ecd42da4ec59322
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 bcf2499d4d..d650aa54c8 100644
--- a/build.xml
+++ b/build.xml
@@ -4549,7 +4549,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]