Miks Rozenbergs a �crit : > Hello! > > Continuum can't checkout sources from CVS using following SCM URL > scm:cvs:pserver:[EMAIL PROTECTED] > <mailto:[EMAIL PROTECTED]>:/cvs/src:BPM/source/com.exigen.bpm.util. > It results in errors shown down bellow. As you can see the error happens > while invoking command "cvs -f -d :pserver:[EMAIL PROTECTED] > <mailto:[EMAIL PROTECTED]>:2401/cvs/src -q checkout -r -d 1 > BPM/source/com.exigen.bpm.util".
I just had the exact same problem this morning, it isn't cvsnt's fault. If you look closely at that command line: "...checkout -r -d 1..." actually means 'check out module "1" with a /tag/ of '-d'' . BTW I tried this command line on cygwin too and it fails too. It wasnt until I removed the '-d 1' from the command line that the error became obvious, as it says you havent specified a module - the -r swallows the module name and uses it as a tag. Once I twigged this is what I'd done wrong, I went into the continuum config and set the tag to 'HEAD'. This resulted in a command line like "...checkout -r HEAD -d 1..." and everything works. This looks like a bug in SCM to me, it shouldn't emit that '-r' unless there's a tag specified?
