From: Richard C. <ri...@cy...> - 2004-04-04 14:25:57
|
Hi Philipp, From: "Philipp Ottlinger" <web...@po...> > I'm just trying to integrate your tool into my ant script. > It seems as if it's impossible to generate the cvs' log > from ant. When I execute the following task CVS generates > funny characters into the logfile, which prevent the > statcvs-task from working. > > Is there a workaround available to use statcvs without > manually generating cvslog ? AFAICT your build file should work. I can't tell from your report if it's an Ant, CVS or StatCvs problem. You can try a development snapshot of StatCvs, maybe the problem was already fixed: http://page.mi.fu-berlin.de/~cyganiak/statcvs/v0.2-dev/ If that doesn't work either: What error does StatCvs report? Can you share a snippet of the CVS log that shows those funny characters? Best regards, Richard P.S.: FYI, there's a CVS Ant task: http://ant.apache.org/manual/CoreTasks/cvs.html Here's the Ant snippet I use for generating CVS logs: <property name="cvs.logfile" value="cvs.log"/> <target name="cvs.update"> <cvs command="update -d"/> </target> <target name="cvs.log"> <cvs command="log" output="${cvs.logfile}"/> </target> |