Update of /cvsroot/sandweb/sandweb/lib/SandWeb/Repository
In directory usw-pr-cvs1:/tmp/cvs-serv16547/lib/SandWeb/Repository
Modified Files:
CVS.pm
Log Message:
hmm, fixed formatting in Repository, looks like a gen-u-wine bug
in CVS.pm! for some reason it was trying to do
cvs co $sandbox$file
which is weird, it should just do
cvs co $file
because it's already in the sandbox dir.
I used the sandweb/test/vcs script to verify that it works now,
given a correct Repository object and module name.
Index: CVS.pm
===================================================================
RCS file: /cvsroot/sandweb/sandweb/lib/SandWeb/Repository/CVS.pm,v
retrieving revision 1.26
retrieving revision 1.27
diff -U2 -r1.26 -r1.27
--- CVS.pm 26 Jan 2002 22:22:10 -0000 1.26
+++ CVS.pm 13 Feb 2002 07:42:34 -0000 1.27
@@ -110,5 +110,5 @@
my $root = $self->get_root();
my $sandbox = $self->get_sandbox();
- my @param = "checkout -d $sandbox$file";
+ my @param = "checkout -d $file";
if ($rev) { push @param, " -r $rev" };
|