This is an automated email from the ASF dual-hosted git repository. dsoumis pushed a commit to branch 9.0.x in repository https://gitbox.apache.org/repos/asf/tomcat.git
commit 00e4f84b4b749fdae1aa6d269de814f36e3c7a0e 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 b14215defd..1b2d0f5fb7 100644 --- a/build.xml +++ b/build.xml @@ -2675,7 +2675,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"/> @@ -2722,7 +2722,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"/> @@ -2733,7 +2733,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