This is an automated email from the ASF dual-hosted git repository. dsoumis pushed a commit to branch 11.0.x in repository https://gitbox.apache.org/repos/asf/tomcat.git
The following commit(s) were added to refs/heads/11.0.x by this push: new 0b9aed3047 Fix property reference for skip.installer in build.xml 0b9aed3047 is described below commit 0b9aed30476e4e8332b44c79da0ccc070e490a42 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 fb9a364820..5f75a63f71 100644 --- a/build.xml +++ b/build.xml @@ -2650,7 +2650,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"/> @@ -2697,7 +2697,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"/> @@ -2708,7 +2708,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