Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--plugins/org.eclipse.emf.cdo.releng/build.xml21
1 files changed, 11 insertions, 10 deletions
diff --git a/plugins/org.eclipse.emf.cdo.releng/build.xml b/plugins/org.eclipse.emf.cdo.releng/build.xml
index 21e79add53..f86ac0c630 100644
--- a/plugins/org.eclipse.emf.cdo.releng/build.xml
+++ b/plugins/org.eclipse.emf.cdo.releng/build.xml
@@ -480,15 +480,7 @@
</fileset>
</copy>
- <property name="zips" location="${hudson.WORKSPACE}/zips" />
- <mkdir dir="${zips}" />
-
- <if>
- <equals arg1="${hudson.GENERATE_PRODUCTS}" arg2="true" />
- <then>
- <antcall target="-generate.all" />
- </then>
- </if>
+ <antcall target="-generate.all" />
</target>
<!-- ==== -->
@@ -524,10 +516,19 @@
<!-- ============ -->
<target name="-generate.all">
+ <property name="zips" location="${hudson.WORKSPACE}/zips" />
+ <mkdir dir="${zips}" />
+
<antcall target="-generate.index" />
<antcall target="-generate.bookmarks" />
<antcall target="-generate.dropins" />
- <antcall target="-generate.products" />
+
+ <if>
+ <equals arg1="${hudson.GENERATE_PRODUCTS}" arg2="true" />
+ <then>
+ <antcall target="-generate.products" />
+ </then>
+ </if>
</target>
<!-- ============== -->

Back to the top