From: Tomas V.V.Cox Date: Wed, 10 Apr 2002 15:10:49 +0000 (+0000) Subject: Do not show the "tag it!" message when verbose=0 X-Git-Tag: php-4.3.0dev-ZendEngine2-Preview1~738 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=dfba9e63ab62378b2c501ad1e70572085a6e25c0;p=php Do not show the "tag it!" message when verbose=0 # Forgot to commit that before --- 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; }