]> granicus.if.org Git - php/commitdiff
Do not show the "tag it!" message when verbose=0
authorTomas V.V.Cox <cox@php.net>
Wed, 10 Apr 2002 15:10:49 +0000 (15:10 +0000)
committerTomas V.V.Cox <cox@php.net>
Wed, 10 Apr 2002 15:10:49 +0000 (15:10 +0000)
# Forgot to commit that before

pear/PEAR/Packager.php

index 7930203f707040fb541400b8de6a2499b3d2e51e..0dfd39667529ff3e945641109f3fed9c458dd3d8 100644 (file)
@@ -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;
     }