From: Rob H. <for...@us...> - 2003-07-22 04:05:35
|
Update of /cvsroot/sandweb/sandweb/lib/SandWeb/Repository In directory sc8-pr-cvs1:/tmp/cvs-serv9291/lib/SandWeb/Repository Modified Files: Tag: release-1_0-branch cvs.pm Log Message: put single quotes around directory that we "cd" to, so we can have spaces in directory names. (merged from trunk) Index: cvs.pm =================================================================== RCS file: /cvsroot/sandweb/sandweb/lib/SandWeb/Repository/cvs.pm,v retrieving revision 1.46.2.4 retrieving revision 1.46.2.5 diff -U2 -r1.46.2.4 -r1.46.2.5 --- cvs.pm 25 Jun 2003 07:40:26 -0000 1.46.2.4 +++ cvs.pm 22 Jul 2003 04:05:32 -0000 1.46.2.5 @@ -2597,5 +2597,5 @@ my %return = $shell->execute( - 'command' => "cd $sandbox && MESSAGE_FILE=\"$users_dir/commitmsg\" && export MESSAGE_FILE && CVSEDITOR=$bindir/sandweb-editor && export CVSEDITOR && SSH_BIN=$ssh_bin && export SSH_BIN && CVS_RSH=$bindir/sandweb-ssh && export CVS_RSH && $cvs_bin -q -d \"$root\" $param \'$file\'", + 'command' => "cd \'$sandbox\' && MESSAGE_FILE=\"$users_dir/commitmsg\" && export MESSAGE_FILE && CVSEDITOR=$bindir/sandweb-editor && export CVSEDITOR && SSH_BIN=$ssh_bin && export SSH_BIN && CVS_RSH=$bindir/sandweb-ssh && export CVS_RSH && $cvs_bin -q -d \"$root\" $param \'$file\'", ); |