294070 nested compile logs missing from summaries
diff --git a/releng.wtpbuilder/components/jst-sdk/customTargets.xml b/releng.wtpbuilder/components/jst-sdk/customTargets.xml
index 7028d18..7ad4a46 100644
--- a/releng.wtpbuilder/components/jst-sdk/customTargets.xml
+++ b/releng.wtpbuilder/components/jst-sdk/customTargets.xml
@@ -262,8 +262,17 @@
<copy
todir="${buildDirectory}/${buildLabel}/compilelogs"
overwrite="false">
+ <!--
+ we want all @dot.xml files, but assumes a certain structure, to include
+ directory for name of plugin
+ -->
<fileset
- dir="${buildDirectory}/features/**/feature.temp.folder" />
+ dir="${buildDirectory}/features/" >
+
+ <include name="**/feature.temp.folder/"/>
+
+ </fileset>
+
</copy>
diff --git a/releng.wtpbuilder/components/wst-sdk/customTargets.xml b/releng.wtpbuilder/components/wst-sdk/customTargets.xml
index 42fca38..70c850b 100644
--- a/releng.wtpbuilder/components/wst-sdk/customTargets.xml
+++ b/releng.wtpbuilder/components/wst-sdk/customTargets.xml
@@ -309,8 +309,17 @@
<copy
todir="${buildDirectory}/${buildLabel}/compilelogs"
overwrite="false">
+ <!--
+ we want all @dot.xml files, but assumes a certain structure, to include
+ directory for name of plugin
+ -->
<fileset
- dir="${buildDirectory}/features/**/feature.temp.folder" />
+ dir="${buildDirectory}/features/" >
+
+ <include name="**/feature.temp.folder/"/>
+
+ </fileset>
+
</copy>
</target>