Correcting method of deleting auto-generated AutoAnalysis files in ant clean target

This commit is contained in:
joseph.lizier 2015-07-07 15:03:15 +00:00
parent 4f88161873
commit bbbc835c1f
1 changed files with 6 additions and 2 deletions

View File

@ -116,8 +116,12 @@
<delete file="${jarversiondistnamezip}"/>
<delete file="${distnamezip}"/>
<delete file="${jarplainname}"/>
<delete file="demos/AutoAnalyser/GeneratedTECalculator.*"/>
<delete file="demos/java/infodynamics/demos/autoanalysis/GeneratedTECalculator.*"/>
<delete>
<fileset dir="demos/AutoAnalyser" includes="GeneratedTECalculator.*"/>
</delete>
<delete>
<fileset dir="demos/java/infodynamics/demos/autoanalysis" includes="GeneratedTECalculator.*"/>
</delete>
<!-- Don't delete the readme and version files - the user may not have the template to recreate them from -->
</target>