View Single Post
  #2  
Old 07-28-2005, 03:12 PM
kinook kinook is online now
Administrator
 
Join Date: 03-06-2001
Location: Colorado
Posts: 6,015
The CVS action's Command field is editable. If entering 'editors' there doesn't work, please post the Run Program command that does and we'll see about updating the CVS action to accommodate that command.

What you could do is turn off logging for the CVS action (see the Logging.bld sample), and add a Run Script step (which re-enables file logging) to parse out the contents of the LASTSTEP_OUTPUT system macro and log the information you really want to log:

' VBScript sample code
str = vbld_AllMacros.Item("LASTSTEP_OUTPUT")

' ... parse output as needed

Builder.LogMessage str
Reply With Quote