You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@ant.apache.org by "Kuriti, Mohan" <Ku...@trizetto.com> on 2001/03/21 22:30:07 UTC

delete not working

Hi Gurus,

I am using the following target in my xml file.
The files are not getting deleted.

<target name="clean1" depends="dist">
    <!-- Delete the ${build} and ${dist} directory trees -->
    <delete dir="${src}/${build}"/>
    <!--delete dir="${dist}" /-->
</target>

Can anybody help please? I am using ant1.2 . 

Thanks in advance
Mohan


Re: delete not working

Posted by Glenn McAllister <gl...@somanetworks.com>.
"Kuriti, Mohan" wrote:

> Hi Gurus,
>
> I am using the following target in my xml file.
> The files are not getting deleted.
>
> <target name="clean1" depends="dist">
>     <!-- Delete the ${build} and ${dist} directory trees -->
>     <delete dir="${src}/${build}"/>
>     <!--delete dir="${dist}" /-->
> </target>
>
> Can anybody help please? I am using ant1.2 .
>
> Thanks in advance
> Mohan

Are all the files not being deleted?  Some of them?  What do you see
with the -verbose or -debug flags?

Glenn