Here is one for you gurus.
The CVS command line syntax (in Windows XP) that works is:
C:\eclipse\workspace>cvs log -N -d"11 Aug 2005 <= 25 Aug 2005";"25 Aug 2005
>= 11 Aug 2005" ProjectName > c:\ProjectName.txt
In an attempt to translate this into an ANT script with a few variables to
ease various settings it ends up something like this:
<cvs cvsroot="${CVS.Working}" command="log -N -d"${report.start.date}
<= ${report.end.date}";"${report.end.date} >=
${report.start.date}"" package="ProjectName"
dest="${Report.Working}"/>
I THINK every thing is OK excpet the :
command="log -N -d"${report.start.date}
<= ${report.end.date}";"${report.end.date} >=
${report.start.date}""
Which is obviously a bit messy and ANT does not seem to like the <= or >=
when trying to define date ranges.
You wonderful insight and help is appreciated
Thanks
David T.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]