From: Rob H. <for...@us...> - 2003-06-01 09:57:26
|
Update of /cvsroot/sandweb/sandweb/lib/SandWeb/Repository In directory sc8-pr-cvs1:/tmp/cvs-serv622/lib/SandWeb/Repository Modified Files: Tag: release-1_0-branch cvs.pm Log Message: oops, too many quotes around "$rev" in "-r $rev" for update CVS command, caused the tag-sync to fail ( took me a while to figure that one out, it kept saying 'tag "foo" does not exist', I didn't realize it literally was saying quote foo quote :) Index: cvs.pm =================================================================== RCS file: /cvsroot/sandweb/sandweb/lib/SandWeb/Repository/cvs.pm,v retrieving revision 1.46.2.2 retrieving revision 1.46.2.3 diff -U2 -r1.46.2.2 -r1.46.2.3 --- cvs.pm 1 Jun 2003 07:45:56 -0000 1.46.2.2 +++ cvs.pm 1 Jun 2003 09:57:21 -0000 1.46.2.3 @@ -2323,5 +2323,5 @@ if ($clobber) { push @param, " -C" }; if ($directories) { push @param, " -d" }; - if ($rev) { push @param, " -r \\\"$rev\\\"" }; + if ($rev) { push @param, " -r $rev" }; if ($date) { push @param, " -D" }; if ($merge) { push @param, " -j" }; |