From: Rob H. <for...@us...> - 2002-06-19 01:19:29
|
Update of /cvsroot/sandweb/sandweb/lib/SandWeb/Repository In directory usw-pr-cvs1:/tmp/cvs-serv23137/lib/SandWeb/Repository Modified Files: cvs.pm Log Message: this fixes the bug with commiting on files that have spaces, just needed single quotes around filename in call to SandWeb::Shell.. :) Index: cvs.pm =================================================================== RCS file: /cvsroot/sandweb/sandweb/lib/SandWeb/Repository/cvs.pm,v retrieving revision 1.17 retrieving revision 1.18 diff -U2 -r1.17 -r1.18 --- cvs.pm 19 Jun 2002 01:08:22 -0000 1.17 +++ cvs.pm 19 Jun 2002 01:19:25 -0000 1.18 @@ -866,5 +866,5 @@ my $output = $shell->execute( - 'command' => "cd $sandbox && CVS_RSH=$ssh_bin && export CVS_RSH && $cvs_bin -d $root $param $file", + 'command' => "cd $sandbox && CVS_RSH=$ssh_bin && export CVS_RSH && $cvs_bin -d $root $param \'$file\'", ); |