don't fail the build if we cant delete on windows (it doesnt matter)

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1395518 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Robert Muir 2012-10-08 11:36:41 +00:00
parent d9b8651fc8
commit 7fb5daa879
2 changed files with 4 additions and 10 deletions

View File

@ -544,12 +544,9 @@
<property name="lucene-core.uptodate" value="true"/> <property name="lucene-core.uptodate" value="true"/>
</target> </target>
<!-- TODO: in the future, we don't need to actually put <!-- NOTE: not really useful anymore ... -->
jars in the lib/ folders, but can just put in classpath.
only packaging tasks really need that (and could do it
under build/ directories) -->
<target name="clean-jars" description="Clean local jars"> <target name="clean-jars" description="Clean local jars">
<delete> <delete failonerror="false">
<fileset dir="." includes="**/*.jar"/> <fileset dir="." includes="**/*.jar"/>
</delete> </delete>
</target> </target>

View File

@ -675,12 +675,9 @@
tofile="${analysis.conf.dest}/stopwords_tr.txt"/> tofile="${analysis.conf.dest}/stopwords_tr.txt"/>
</target> </target>
<!-- TODO: in the future, we don't need to actually put <!-- NOTE: not really useful anymore -->
jars in the lib/ folders, but can just put in classpath.
only packaging tasks really need that (and could do it
under build/ directories) -->
<target name="clean-jars" description="Clean local jars"> <target name="clean-jars" description="Clean local jars">
<delete> <delete failonerror="false">
<fileset dir="." includes="**/*.jar"/> <fileset dir="." includes="**/*.jar"/>
</delete> </delete>
</target> </target>