You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by sc...@apache.org on 2021/11/11 15:52:58 UTC

[tomcat] branch 10.0.x updated: Fail the build if GPG is not found in the expected location.

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

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


The following commit(s) were added to refs/heads/10.0.x by this push:
     new ffc39d9  Fail the build if GPG is not found in the expected location.
ffc39d9 is described below

commit ffc39d91392e51b41e00bfc4c8fae4954ac107f7
Author: Christopher Schultz <ch...@christopherschultz.net>
AuthorDate: Thu Nov 11 10:40:29 2021 -0500

    Fail the build if GPG is not found in the expected location.
---
 res/maven/mvn-pub.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/res/maven/mvn-pub.xml b/res/maven/mvn-pub.xml
index 10b3978..da08855 100644
--- a/res/maven/mvn-pub.xml
+++ b/res/maven/mvn-pub.xml
@@ -515,6 +515,7 @@
 
   <target name="init-gpg-1">
     <available file="${gpg.exec}" property="gpg.exec.available"/>
+    <fail unless="gpg.exec.available">GPG is required, but was not found at ${gpg.exec}</fail>
   </target>
 
   <target name="init-gpg-2" if="${gpg.exec.available}">

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org