Re: *****spam***** Adding files to CVS with Ant

2006-02-07 Thread Giovanni Mesturini
I found the problem. The problem is that I was attemping to upload a file in a tagged branch, checked out like a readonly release. My fault, I'm sorry. If you checkout a readonly release from CVS you must have an alternative branch to commit in. Now I have succesfully solved this problem, but othe

Re: *****spam***** Adding files to CVS with Ant

2006-02-07 Thread Geoffrey Mitchell
I had problems with this too. I think what is happening is that it is trying to add your files in a directory called cvs-local/test-module, which doesn't exist in cvs, so it is failing, which is good, because this isn't what you want anyway. If you were going to do this from the command line,

Re: Adding files to CVS with Ant

2006-02-07 Thread Andrew Goktepe
Is the new file in a directory that is also new? The cvs add command is not recursive; you will need to add any new directories first. Try doing the add and commit of the same file manually on the command line and see if you get an error that way too. If so, then this is not a problem with Ant. -

Adding files to CVS with Ant

2006-02-07 Thread Giovanni Mesturini
Scenario: I have to add a file to CVS from client to server using an Ant script. This is my build.xml: ... ...