info-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Re Help - CVS has been dumped on me (from originator)


From: Eric Siegerman
Subject: Re: Re Help - CVS has been dumped on me (from originator)
Date: Wed, 22 Aug 2001 16:14:28 -0400
User-agent: Mutt/1.2.5i

On Wed, Aug 22, 2001 at 09:11:36AM +0100, jim westoby wrote:
> cvs -t checkout -P exe/connect
> 
> \n 
> 
> cvs checkout: notice: main loop with 
> CVSROOT=:pserver:address@hidden:/usr/local/cvsroot
> 
> S-> do_module (exe/connect
                            ^^^
> 
> , Updating, , )
 ^^
> 
> cvs server: cannot find module `exe/connect
                                             ^^^
> 
> ' - ignored
 ^^
> 
> cvs [checkout aborted]: cannot expand modules


Hmmm, that looks like a line-ending mismatch -- someone failing
to strip the newline from the command line.  Not sure whose fault
it would be...  perhaps the C runtime with which the CVS client
was linked?

Try this:
        cvs -t checkout -P exe/connect non-existent-directory
If I'm right:
  - exe/connect will check out ok (or at least you'll be a step
    closer, and get a new error message instead)

  - you'll get a "cannot find module" error for
    "non-existent-directory\n" (which you should -- by definition
    it doesn't exist -- but still with the bogus "\n" before the
    closing "'")

  - reversing the arguments, like so:
        cvs -t checkout -P non-existent-directory exe/connect
    will give "cannot find module" errors both for
    "non-existent-directory" (still legitimate, but no "\n" this
    time), and for "exe/connect\n".

--

|  | /\
|-_|/  >   Eric Siegerman, Toronto, Ont.        address@hidden
|  |  /
With sufficient thrust, pigs fly just fine. However, this is not
necessarily a good idea.
        - RFC 1925 (quoting an unnamed source)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]