From dfba9e63ab62378b2c501ad1e70572085a6e25c0 Mon Sep 17 00:00:00 2001 From: "Tomas V.V.Cox" Date: Wed, 10 Apr 2002 15:10:49 +0000 Subject: [PATCH] Do not show the "tag it!" message when verbose=0 # Forgot to commit that before --- pear/PEAR/Packager.php | 4 ++-- 1 file 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; } -- 2.40.0