Exclude build/eclipse from ant clean target
This commit is contained in:
parent
11edc7ed84
commit
70456c41ad
1 changed files with 4 additions and 1 deletions
|
|
@ -3,7 +3,10 @@
|
|||
<project xmlns:if="ant:if" xmlns:unless="ant:unless">
|
||||
|
||||
<target name="clean" description="Delete all build files and directories.">
|
||||
<delete dir="${buildroot}"/>
|
||||
<delete includeEmptyDirs="true">
|
||||
<!-- NOTE: doesn't delete Unix hidden files (beginning with ".") -->
|
||||
<fileset dir="${buildroot}" excludes="eclipse/"/>
|
||||
</delete>
|
||||
<delete dir="${build_cobertura}"/>
|
||||
<delete dir="${build_cobertura_report}"/>
|
||||
<delete file="cobertura.ser"/>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue