This is an automated email from the ASF dual-hosted git repository. dsoumis 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 1da6da3b64 Fix property reference for skip.installer in build.xml 1da6da3b64 is described below commit 1da6da3b64e82fe2a2805faf08f36246d85da7cb Author: Dimitris Soumis <jimsou...@gmail.com> AuthorDate: Wed Mar 5 18:18:34 2025 +0200 Fix property reference for skip.installer in build.xml --- build.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build.xml b/build.xml index d5ad123bb9..29f145db2a 100644 --- a/build.xml +++ b/build.xml @@ -2697,7 +2697,7 @@ You may need a custom build of makensis. Instructions for this may be found in B <target name="-installer-prep" depends="dist-static,-installer-checks" - unless="skip.installer"> + unless="${skip.installer}"> <copy todir="${tomcat.dist}"> <fileset dir="res/install-win"> <include name="INSTALLLICENSE"/> @@ -2744,7 +2744,7 @@ You may need a custom build of makensis. Instructions for this may be found in B <target name="-installer-build" depends="-installer-prep,-installer-wine,-installer-makensis" - unless="skip.installer"> + unless="${skip.installer}"> <exec dir="${tomcat.dist}" executable="${nsis.executable.windows}" osfamily="windows"> <arg value="/DNSISDIR=${nsis.bin.home}"/> <arg value="/V2"/> @@ -2755,7 +2755,7 @@ You may need a custom build of makensis. Instructions for this may be found in B <target name="installer" description="Builds and optionally signs the Windows installer" depends="-installer-build" - unless="skip.installer"> + unless="${skip.installer}"> <move file="${tomcat.dist}/tomcat-installer.exe" tofile="${tomcat.release}/v${version}/bin/${final.name}.exe"/> <!-- .exe has changed so need to redo checksums and OpenPGP signature --> <delete file="${tomcat.release}/v${version}/bin/${final.name}.exe.asc"/> --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org