This is an automated email from the ASF dual-hosted git repository. rjung 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 ab851b782c Correct fix for skip.installer=true build. ab851b782c is described below commit ab851b782cead21947b6b5a2c785b2cdbab02b92 Author: Rainer Jung <rainer.j...@kippdata.de> AuthorDate: Sun Mar 2 10:11:31 2025 +0100 Correct fix for skip.installer=true build. --- build.xml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build.xml b/build.xml index 815f976487..9070db7e00 100644 --- a/build.xml +++ b/build.xml @@ -2613,7 +2613,7 @@ </copy> </target> - <target name="-installer-pre-init" unless="skip.installer"> + <target name="-installer-pre-init"> <property environment="env" /> <condition property="wine.ok"> <or> @@ -2636,6 +2636,7 @@ <os family="windows" /> <isset property="wine.ok"/> <isset property="makensis.ok"/> + <istrue value="${skip.installer}"/> </or> </condition> </target> --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org