----- Original Message -----
From: "Martin van Wieringen" <[EMAIL PROTECTED]>
To: "'Ant Users List'" <[EMAIL PROTECTED]>
Sent: Monday, January 21, 2002 2:27 AM
Subject: RE: W2000 SP1 Delete task does nothing



>
> That is not possible as the directory I am trying to delete is created by
> Ant itself (if it is not there yet) when I build my app. I each time
delete
> the build directory myself without any problems.  So each time ant
> recreates the build directory. Compiles my class and puts it in the build
> directory then when I call
>
>   <target name="clean">
>     <!-- Delete the ${build} and ${dist} directory trees -->
>     <delete dir="${build}"/>
>     <delete dir="${dist}"/>
>   </target>
>
> The build directory is not cleared from the class meaning the <target
> name="clean"> does nothing. I am thinking more of a bug in Ant as it does
> not display any errormessage if the <target name="clean"> failed.
> Developers any ideas?

Maybe you havent defined the properties at this point


--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to