From: Rob H. <for...@us...> - 2002-02-13 07:42:37
|
Update of /cvsroot/sandweb/sandweb/lib/SandWeb In directory usw-pr-cvs1:/tmp/cvs-serv16547/lib/SandWeb Modified Files: Repository.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: Repository.pm =================================================================== RCS file: /cvsroot/sandweb/sandweb/lib/SandWeb/Repository.pm,v retrieving revision 1.18 retrieving revision 1.19 diff -U2 -r1.18 -r1.19 --- Repository.pm 22 Jan 2002 08:25:44 -0000 1.18 +++ Repository.pm 13 Feb 2002 07:42:34 -0000 1.19 @@ -143,8 +143,8 @@ if ($repo_type eq 'CVS') { - %return = $vcs->checkout(date => $date, - rev => $rev, - recurse => $recurse, - file => $file, + %return = $vcs->checkout(date => $date, + rev => $rev, + recurse => $recurse, + file => $file, ); } |