When deleting the directory, you end up deleting all .svn
subdirectories. This is what upsets subversion. Just delete the actual
files, not the directories. Do not delete anything in **/.svn/*.*
It should look something like:
<delete>
<fileset dir="directory">
<include name="**/*.*"/>
<exclude name="**/.svn/*.*"/>
</fileset>
</delete>
Dave Pawson wrote:
>running an ant script,
> I delete a directory
> .... trunk/documentation
>the generate content in it using the ant script.
>
>when I try to commit this, svn gets upset.
> I have to delete the directory, update, then generate files
> which overwrite the directory contents.
>
>I can then commit OK.
>
>Is there anyway round this please?
>svn add trunk/documentation fails too.
>
>regards
>
>
---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org
Received on Fri Sep 16 16:26:46 2005