From: Stig Bakken Date: Mon, 9 Sep 2002 21:45:40 +0000 (+0000) Subject: * more consistent output X-Git-Tag: RELEASE_0_91~3 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b5df9f32def7c23683cd28d4d09b302f40ebdeca;p=php * more consistent output --- diff --git a/pear/PEAR/Command/Install.php b/pear/PEAR/Command/Install.php index a7b590e140..ebdb169889 100644 --- a/pear/PEAR/Command/Install.php +++ b/pear/PEAR/Command/Install.php @@ -246,10 +246,10 @@ specified at once. foreach ($params as $pkg) { if ($this->installer->uninstall($pkg, $options)) { if ($this->config->get('verbose') > 0) { - $this->ui->outputData("uninstall $pkg ok", $command); + $this->ui->outputData("uninstall ok: $pkg", $command); } } else { - return $this->raiseError("uninstall $pkg failed"); + return $this->raiseError("uninstall failed: $pkg"); } } return true;