"attribute 'file' is not a file" error using SvnAnt <update>

47 views Asked by At

What wrong with my update?

<svn refid="svn.settings" logFile="D:\Copyof\anttt\R\log1.log">
    <checkout url="${svn.url}" destpath="D:\Copyof\anttt\R\OXS" revision="HEAD" depth="empty" />
    <update file="D:/Copyof/anttt/R/OXS/111.sql" dir="D:/Copyof/anttt/R/OXS" recurse="false"/>
</svn>

I got an error:

The attribute 'file' is not a file

If I change my update like this:

<update file="${svn.url}/111.sql" recurse= "false"/>

I get an error that the path is wrong. I got the pathbuild from nowhere.

D:/javaproject/build/https://.....
0

There are 0 answers