summaryrefslogtreecommitdiff
path: root/pear
diff options
context:
space:
mode:
authorTomas V.V.Cox <cox@php.net>2002-04-10 15:10:49 +0000
committerTomas V.V.Cox <cox@php.net>2002-04-10 15:10:49 +0000
commitdfba9e63ab62378b2c501ad1e70572085a6e25c0 (patch)
tree7c11e7504abc171f323b54c5b51ff7b9660efa3b /pear
parenta332c8c27b7f21c17144d3fa18cc8e324080950a (diff)
downloadphp-git-dfba9e63ab62378b2c501ad1e70572085a6e25c0.tar.gz
Do not show the "tag it!" message when verbose=0
# Forgot to commit that before
Diffstat (limited to 'pear')
-rw-r--r--pear/PEAR/Packager.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/pear/PEAR/Packager.php b/pear/PEAR/Packager.php
index 7930203f70..0dfd396675 100644
--- a/pear/PEAR/Packager.php
+++ b/pear/PEAR/Packager.php
@@ -137,8 +137,8 @@ class PEAR_Packager extends PEAR_Common
$this->log(1, "Package $dest_package done");
$cvsversion = preg_replace('/[^a-z0-9]/i', '_', $pkgversion);
$cvstag = "RELEASE_$cvsversion";
- $this->log(0, "Tag the released code with `pear cvstag $pkgfile'");
- $this->log(0, "(or set the CVS tag $cvstag by hand)");
+ $this->log(1, "Tag the released code with `pear cvstag $pkgfile'");
+ $this->log(1, "(or set the CVS tag $cvstag by hand)");
return $dest_package;
}