I'm trying to get Ant to build a SVN log file:

svn log -v --xml > logfile.log

The ">" seems to be causing problems - so I dug around and found this:

http://ant.apache.org/faq.html#shell-redirect-1

But despite various trys using > and various combos of single and
double quotes I can't make it work...

<target name="buildReport">
        <exec executable="svn">
                <arg line="log --xml -v D:\CFProjects\mrc\priv &gt;
D:\temp\svn.log" />
        </exec>
</target>

I'm getting back:
    [exec] svn: Error resolving case of 'D:\CFProjects\mrc\priv >
D:\temp\svn.log'


Jim

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

Reply via email to