Hi,
I have problem with the following:
The following is from my build.xml:
<property name = "srcDir" value = "../source/src" />
<property name = "testDir" value = "../source/test" />
<property name="cvs.repository" value
= ":pserver:[EMAIL PROTECTED]:c:\Repo1"/>
<property name="cvs.package" value = "myPackage"/>
... ... ... ...
<target name="checkout" depends="test" description="Update package
from CVS">
<cvs cvsroot="${cvs.repository}" package="${cvs.package}" dest
="..\.." command="update" />
<cvs command="commit -m 'No Message' ${srcDir} ${testDir} "/>
</target>
I have these messages when I run ant:
... ... no problem ... ...
[cvs] cvs commit: Examining ../somefolders.....
[cvs] cvs commit: Examining ../somemorefolders.....
[cvs] protocol error: `../source/src/oneOfMyFolders' has
too many ..
It is complaining the '..' - the protocol error. I did not change that else
my ant would not be pointing to the right folder. How can I solve this
problem?
Thanks.
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>