Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--releng/org.eclipse.cdt.repo/pom.xml6
1 files changed, 5 insertions, 1 deletions
diff --git a/releng/org.eclipse.cdt.repo/pom.xml b/releng/org.eclipse.cdt.repo/pom.xml
index 64aad4c6d13..ca52a643239 100644
--- a/releng/org.eclipse.cdt.repo/pom.xml
+++ b/releng/org.eclipse.cdt.repo/pom.xml
@@ -42,7 +42,11 @@
<ant antfile="${project.build.directory}/antArtifactsUpdater.xml"/>
<!-- now promote the update build to our download area -->
- <delete dir="${cdt-download-dir}"/>
+ <delete>
+ <fileset dir="${cdt-download-dir}">
+ <exclude name="rcp*"/>
+ </fileset>
+ </delete>
<copy includeemptydirs="false" todir="${cdt-download-dir}">
<fileset dir="target/repository">
<include name="**" />

Back to the top