This is an automated email from the ASF dual-hosted git repository. dsoumis pushed a commit to branch 10.1.x in repository https://gitbox.apache.org/repos/asf/tomcat.git
commit 3c15bf21bde367f3524820b505d1d90e6aed1523 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 4fc2fac229..836774a2a9 100644 --- a/build.xml +++ b/build.xml @@ -2678,7 +2678,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"/> @@ -2725,7 +2725,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"/> @@ -2736,7 +2736,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