> -----Original Message-----
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On
Behalf
> 
> The "command" attribute is a text string passed directly to cvs, so
use
> whatever command you normally would use. And for the comment, you can
use
> any variable set prior to the call. For example, to add a file with a
> given comment (either in a build.properties, a prior target, or the
> command line), use:
> 
> <target name="_put.cvs.file_">
>    <echo message="Checkin CVS for [${file.name}]" level="debug" />
>    <cvs cvsroot="${cvs.root}"
>         cvsrsh="${cvs.rsh}"
>         dest="${module.dir}"
>         command="add -m \"${cvs.comment}\"
${build.dir}\${file.name}"/>

You can't escape quotes like this in XML.

You must use &quot; instead. (At least I think that's the correct
entity)

-DD

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to