Assuming you're using CVS of course :-P
~~K -----Original Message----- From: Kevin Grey [mailto:[EMAIL PROTECTED]] Sent: Monday, May 06, 2002 2:41 PM To: 'Ant Users List' Subject: RE: newbie - help You can tag an already checked out version of the code using: <cvs command=" tag -R -d ${tag.name} ${module.name}"/> Or you can tag the tree in the repository without checking it out using: <cvs command="-q rtag -R -F ${tag.name} ${module.name}"/> You can also invoke these CVS commands directly using the <exec/> task. ~~K -----Original Message----- From: Terry King [mailto:[EMAIL PROTECTED]] Sent: Monday, May 06, 2002 2:32 PM To: [EMAIL PROTECTED] Subject: newbie - help Hi, we just started using ant for automating builds. We are using 1.4.1. I now have a master build that checks out each of our 4 projects, runs build.xml for each, creates a zip file, copies it to the appropriate directory, and sends an email regarding the success of the build. This is all done through a command line. What I would like to do is to checkout the files, and actually tag them with a version number for a release build once a week. Is this possible? Thanks in advance. Terry --------------------------------- Do You Yahoo!? Yahoo! Health - your guide to health and wellness -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]> -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
