r9873 - helma/helma/trunk
[email protected] Fri, 11 Sep 2009 12:34:17 +0200 (CEST)
| Newsgroups | gmane.comp.java.helma.cvs |
|---|---|
| Message-ID | <20090911103417.4E37B3D0E3@mia> |
Author: hannes
Date: 2009-09-11 12:34:17 +0200 (Fri, 11 Sep 2009)
New Revision: 9873
Modified:
helma/helma/trunk/build.xml
Log:
Fix clean task to only clean helma*.jar in lib directory.
Details at http://dev.helma.org/trac/helma/changeset/9873
Modified: helma/helma/trunk/build.xml
===================================================================
--- helma/helma/trunk/build.xml 2009-09-10 16:10:29 UTC (rev 9872)
+++ helma/helma/trunk/build.xml 2009-09-11 10:34:17 UTC (rev 9873)
@@ -477,7 +477,7 @@
<delete dir="${build.dist}"/>
<delete file="${home.dir}/launcher.jar" quiet="true"/>
<delete>
- <fileset file="${build.lib}" includes="**/${jar.name}*.jar"/>
+ <fileset dir="${build.lib}" includes="**/${jar.name}*.jar"/>
</delete>
</target>