tag="${cvs.branch}"
> />
>
> out="${cvs.report}${file.separator}changelog.html"
>style="${ant.home}/etc/changelog.xsl">
>
>
>
>
>
>
> -Original Message-----
> From:
Original Message-
From: Antoine Levy-Lambert [mailto:anto...@gmx.de]
Sent: Friday, December 31, 2010 10:50 AM
To: Ant Users List
Subject: Re: fileset of cvs changed files
Hello Mark,
what you can do is run your cvs update using the exec task and use a
nested filterchain do capture output
Hello Mark,
what you can do is run your cvs update using the exec task and use a
nested filterchain do capture output lines with a "U" [1]
and apply a regular expression to keep only the path of the file, then
save this output into a file.
The output file should contain a series of file relativ
i'm using ant to build a project that has been checked out from cvs. i want
to run a task that uses a fileset of all files changed from cvs.
basically, i'm looking to run a source code formatter on the source files
and only want it to run on files that have changed from the version control.
than