Svnant status returns incorrect results

I am using svnant and using status .

When I use tortoisesvn statusthe command line in windows 7in basedirmy repo, I get the following:

M  Build\build.xml
M  Build\otherStuff.txt

But when I use the svnant status task I get:

svn.status.textStatusProperty = normal
svn.status.propStatusProperty = normal

I would expect it to return this:

svn.status.textStatusProperty = modified
svn.status.propStatusProperty = modified

When I go to the directory Buildand do the same, I get the following with tortoisesvn:

M  build.xml
M  otherStuff.txt

And the next with svnant status task

svn.status.textStatusProperty = unversioned
svn.status.propStatusProperty = non-svn

This is really strange because the directory is Builddefinitely versioned.


What's happening? What am I doing wrong?

svn repo. wcversion, . - , .


, , , path="${basedir}". , basedir Build. basedir - .

    <svnSetting
    svnkit="false"
    javahl="false"
    id="svn.settings"/>

    <svn refid="svn.settings">  
        <status 
            path="${basedir}"
            textStatusProperty="testStatus.textStatus" 
            propStatusProperty="testStatus.propStatus" 
        />
    </svn>

    <echo>svn.status.textStatusProperty = ${testStatus.textStatus}</echo>
    <echo>svn.status.propStatusProperty = ${testStatus.propStatus}</echo></echo>
+3