From: Rob H. <for...@us...> - 2002-06-19 06:47:10
|
Update of /cvsroot/sandweb/sandweb/lib/SandWeb/Repository In directory usw-pr-cvs1:/tmp/cvs-serv21167/lib/SandWeb/Repository Modified Files: cvs.pm Log Message: added "-q" global command to CVS call, this keeps it from printing the name of every directory it looks in when doing update. The only thing you really want to see are files that have been updated, right? :) Not every damn dir in your sandbox. Index: cvs.pm =================================================================== RCS file: /cvsroot/sandweb/sandweb/lib/SandWeb/Repository/cvs.pm,v retrieving revision 1.21 retrieving revision 1.22 diff -U2 -r1.21 -r1.22 --- cvs.pm 19 Jun 2002 06:44:41 -0000 1.21 +++ cvs.pm 19 Jun 2002 06:47:07 -0000 1.22 @@ -952,5 +952,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 -q -d $root $param \'$file\'", ); |