This one-liner cleans up after the junit test CopydirTest.java (it was missing
the tmp directory)
__________________________________________________
Do You Yahoo!?
Yahoo! Auctions - Buy the things you want at great prices.
http://auctions.yahoo.com/
Index: build.xml
===================================================================
RCS file: /home/cvspublic/jakarta-ant/build.xml,v
retrieving revision 1.114
diff -u -r1.114 build.xml
--- build.xml 2001/01/24 12:53:37 1.114
+++ build.xml 2001/01/24 22:05:27
@@ -561,7 +561,7 @@
<!-- clean up again -->
<delete dir="${tests.dir}/taskdefs/optional/antlr/antlr.tmp" />
<delete dir="${tests.dir}/taskdefs/taskdefs.tmp" />
- <delete dir="${tests.dir}/taskdefs.tmp" />
+ <delete dir="src/etc/testcases/taskdefs.tmp" />
<delete file="${tests.dir}/taskdefs/tmp.jar" />
</target>