Skip to content
Snippets Groups Projects
Commit ff52892e authored by david_williams's avatar david_williams
Browse files

added more progress echo statements

parent 206e3c77
No related branches found
No related tags found
No related merge requests found
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
default="nodefault" default="nodefault"
basedir="."> basedir=".">
<property name="debug" value="false" /> <property name="debugOptimization" value="false" />
<!-- ================================================================================== --> <!-- ================================================================================== -->
...@@ -52,6 +52,7 @@ ...@@ -52,6 +52,7 @@
<!-- named normalized --> <!-- named normalized -->
<!-- --> <!-- -->
<!-- ================================================================================== --> <!-- ================================================================================== -->
<echo message="normalize jars" />
<java jar="${pde.builder.path}/startup.jar" <java jar="${pde.builder.path}/startup.jar"
fork="true" fork="true"
jvm="${java15-home}/bin/java" jvm="${java15-home}/bin/java"
...@@ -76,6 +77,7 @@ ...@@ -76,6 +77,7 @@
<!-- end up in {tmpsite}/eclipse --> <!-- end up in {tmpsite}/eclipse -->
<!-- --> <!-- -->
<!-- ================================================================================== --> <!-- ================================================================================== -->
<echo message="unzip normalized update jars to a holding place" />
<unzip dest="${tmpsite}" <unzip dest="${tmpsite}"
src="${tmpsite}/normalized/${archiveName}" /> src="${tmpsite}/normalized/${archiveName}" />
...@@ -170,18 +172,22 @@ ...@@ -170,18 +172,22 @@
<condition property="verboseIfDebug" <condition property="verboseIfDebug"
value="-verbose" value="-verbose"
else=""> else="">
<istrue value="${debug}" /> <istrue value="${debugOptimization}" />
</condition> </condition>
<condition property="logIfDebug" <condition property="logIfDebug"
value="-debug -consolelog" value="-debug -consolelog"
else=""> else="">
<istrue value="${debug}" /> <istrue value="${debugOptimization}" />
</condition>
<condition property="keepIfDebug"
value="true">
<istrue value="${debugOptimization}" />
</condition> </condition>
</target> </target>
<target name="deleteTmpSite" unless="debug"> <target name="deleteTmpSite" unless="keepIfDebug">
<delete dir="${tmpsite}" /> <delete dir="${tmpsite}" />
</target> </target>
...@@ -199,7 +205,7 @@ ...@@ -199,7 +205,7 @@
</java> </java>
</target> </target>
<target name="makeBackupCopyForDebugging" if="debug"> <target name="makeBackupCopyForDebugging" if="keepIfDebug">
<!-- temporary copy while confirming build to be able to do side-by-side comparisons --> <!-- temporary copy while confirming build to be able to do side-by-side comparisons -->
<mkdir dir="${buildDirectory}/backuporiginalzips" /> <mkdir dir="${buildDirectory}/backuporiginalzips" />
<copy file="${buildDirectory}/${buildLabel}/${archiveName}" <copy file="${buildDirectory}/${buildLabel}/${archiveName}"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment