[openbeos] Re: Problem with anonymous CVS checkout

  • From: "Axel Dörfler" <axeld@xxxxxxxxxxxxxxxx>
  • To: openbeos@xxxxxxxxxxxxx
  • Date: Thu, 27 May 2004 17:33:02 +0200 CEST

Finn Bastiansen <beos@xxxxxxxxxxxxx> wrote:
> I regularly check out the latest changes of the OBOS CVS repository. 
> But 
> since about two weeks (maybe a bit longer) ago it does not work 
> anymore.
> 
> My checkout script is based on an article in an PBOS newsletter:
> 
> #!/bin/sh 
> # check out the entire CVS repository for OpenBeOS 
> export CVSROOT=:pserver:anonymous@xxxxxxxxxxxxxxxxxxxx:/cvsroot/open-beos 
> 
To add to those what others already said, you may want to use the 
following script to fix your repository:
------
#!/bin/sh

if [ "$1" == "" ]; then
        find . -name Root -exec cvsfix {} \;
else
        tmp=`sed -e "s/@cvs.open-beos.sourceforge.net/@cvs.sourceforge.net/
" "$1"`
        echo $tmp > "$1"
fi
------

Just call that one in your repository root.

Bye,
   Axel.


Other related posts: