cvs: peardoc /scripts pearwebbuild.php
[email protected] ("Christian Weiske")
| Newsgroups | php.pear.doc |
|---|---|
| Message-ID | <cvscweiske1235307415@cvsserver> |
cweiske Sun Feb 22 12:56:55 2009 UTC
Modified files:
/peardoc/scripts pearwebbuild.php
Log:
Be quiet when updating cvs
http://cvs.php.net/viewvc.cgi/peardoc/scripts/pearwebbuild.php?r1=1.19&r2=1.20&diff_format=u
Index: peardoc/scripts/pearwebbuild.php
diff -u peardoc/scripts/pearwebbuild.php:1.19 peardoc/scripts/pearwebbuild.php:1.20
--- peardoc/scripts/pearwebbuild.php:1.19 Sun Feb 22 12:54:37 2009
+++ peardoc/scripts/pearwebbuild.php Sun Feb 22 12:56:55 2009
@@ -22,7 +22,7 @@
require_once 'Console/CommandLine.php';
$parser = new Console_CommandLine();
$parser->description = 'Builds the full manual';
-$parser->version = '$Id: pearwebbuild.php,v 1.19 2009/02/22 12:54:37 cweiske Exp $';
+$parser->version = '$Id: pearwebbuild.php,v 1.20 2009/02/22 12:56:55 cweiske Exp $';
$parser->addOption('updatecvs', array(
'long_name' => '--updatecvs',
'description' => 'Update peardoc from CVS',
@@ -59,14 +59,14 @@
if ($cmdline->options['updatecvs']) {
chdir(dirname(dirname(dirname(__FILE__))));
// Update cvs
- shell_exec('cvs -d :pserver:[email protected]:/repository checkout peardoc');
+ shell_exec('cvs -q -d :pserver:[email protected]:/repository checkout peardoc');
}
if ($cmdline->options['updatephd']) {
chdir(dirname(dirname(dirname(__FILE__))));
// Update cvs
- shell_exec('cvs -d :pserver:[email protected]:/repository checkout phd');
+ shell_exec('cvs -q -d :pserver:[email protected]:/repository checkout phd');
// Update phd
shell_exec($pear_executable.' upgrade -f '.dirname(dirname(dirname(__FILE__))).'/phd/package.xml');
}