From: Rob H. <for...@us...> - 2002-08-16 23:19:08
|
Update of /cvsroot/sandweb/sandweb/lib/SandWeb/Repository In directory usw-pr-cvs1:/tmp/cvs-serv6504/lib/SandWeb/Repository Modified Files: cvs.pm Log Message: fixed the commit bug, appears to have been a quoting issue in Repository/vcs.pm ... now uses single quotes instead of trying to pass double quotes through all those layers Index: cvs.pm =================================================================== RCS file: /cvsroot/sandweb/sandweb/lib/SandWeb/Repository/cvs.pm,v retrieving revision 1.29 retrieving revision 1.30 diff -U2 -r1.29 -r1.30 --- cvs.pm 15 Aug 2002 08:00:16 -0000 1.29 +++ cvs.pm 16 Aug 2002 23:19:04 -0000 1.30 @@ -227,5 +227,5 @@ $output = "There must be a commit message.\n"; } else { - push @param, " -m \"$message\""; + push @param, " -m '$message'"; if ($log) { $log->debug("Performing commit operation"); |