Hi all,
I have written a build file that does a checkout from the CVS. But, when i
invoke ant command for the written build file, i get an error message as
*[cvs] Using cvs passfile: C:\Documents and Settings\admin\.cvspass*
[cvs] Caught exception: CreateProcess: cvs -d:pserver:[EMAIL PROTECTED]:path
checkout -rRelease1.1 Loop error=3D2*
*
I have copied the build file below.
<project name =3D "getsrc" default =3D "getfromcvs" basedir =3D ".">
<property file =3D "cvs.properties"/>
<target name =3D "getfromcvs">
<cvs package =3D "Loop"
cvsroot =3D ":pserver:[EMAIL PROTECTED]:/usr/local/comp/"
dest =3D "${des}"
command =3D "checkout"
tag =3D "Release1.1"/>
<cvspass cvsroot =3D ":pserver:[EMAIL PROTECTED]:/usr/local/comp/"
password =3D "pwd"
passfile =3D ".cvspass"/>
</target>
</project>
Thanks for the help in advance.