From: Rob H. <for...@us...> - 2002-06-19 01:08:24
|
Update of /cvsroot/sandweb/sandweb/lib/SandWeb/Repository In directory usw-pr-cvs1:/tmp/cvs-serv21115/lib/SandWeb/Repository Modified Files: cvs.pm Log Message: put ' instead of " around message, seems to fix that "space in comments" bug.. yay :) Index: cvs.pm =================================================================== RCS file: /cvsroot/sandweb/sandweb/lib/SandWeb/Repository/cvs.pm,v retrieving revision 1.16 retrieving revision 1.17 diff -U2 -r1.16 -r1.17 --- cvs.pm 5 Jun 2002 06:32:17 -0000 1.16 +++ cvs.pm 19 Jun 2002 01:08:22 -0000 1.17 @@ -220,5 +220,5 @@ $output = "There must be a commit message.\n"; } else { - push @param, " -m \"$message\""; + push @param, " -m \'$message\'"; $output = $self->shell( 'param' => join('', @param), |