Forum OpenACS Development: Re: Re: CVS history

Collapse
4: Re: Re: CVS history (response to 3)
Posted by Malte Sussdorff on
Thanks a lot, but how do I figure out when my last update was? Is there a build in CVS function or should I keep something like "touch upgraded-2006-02-10" file lying around in my packages directory.
Collapse
5: Re: CVS history (response to 4)
Posted by Andrew Piskorski on
AFAIK you can't find out when you last did a cvs update, but you can get something that works just as well: You have a bunch of files checked out on particular revisions, and those revisions each have a date in CVS. The date you need is simply the most recent such date. You could write a little script to do "cvs stat" on all the files and extract such a date. (I don't see any better way to do it.)
Collapse
6: Re: Re: Re: CVS history (response to 4)
Posted by Gustaf Neumann on
one could make a "cvs status", process the output with a simple tcl script and then do a "cvs log" for every updated file based on the repository revision....