Update of /cvsroot/sandweb/sandweb/lib/SandWeb/Repository
In directory sc8-pr-cvs1:/tmp/cvs-serv9149/lib/SandWeb/Repository
Modified Files:
cvs.pm
Log Message:
put single quotes around directory that we "cd" to, so we can have spaces
in directory names.
Index: cvs.pm
===================================================================
RCS file: /cvsroot/sandweb/sandweb/lib/SandWeb/Repository/cvs.pm,v
retrieving revision 1.51
retrieving revision 1.52
diff -U2 -r1.51 -r1.52
--- cvs.pm 6 Jul 2003 20:36:28 -0000 1.51
+++ cvs.pm 22 Jul 2003 04:04:50 -0000 1.52
@@ -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\'",
);
|