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:53:54 UTC

[tomcat] branch 9.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 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 bd93b02  Fail the build if GPG is not found in the expected location.
bd93b02 is described below

commit bd93b022e363f568c640848d9739bb87d8982b10
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 4e02893..7a40756 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