mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
Don't delete the rcp and rcp-repository directories
When building o.e.cdt.repo we used to delete the entire directory in which we put the build result. However, it is possible that the Standalone debugger was built before o.e.cdt.repo and already put the valid rcp and rcp-repository directories in that location. We therefore should not delete those. Change-Id: I5d1608bceb48633f2205af8f8282e884ff223351
This commit is contained in:
parent
9b9bc86f2e
commit
4fe701bcf7
1 changed files with 5 additions and 1 deletions
|
@ -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="**" />
|
||||
|
|
Loading…
Add table
Reference in a new issue