From b5df9f32def7c23683cd28d4d09b302f40ebdeca Mon Sep 17 00:00:00 2001 From: Stig Bakken Date: Mon, 9 Sep 2002 21:45:40 +0000 Subject: [PATCH] * more consistent output --- pear/PEAR/Command/Install.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pear/PEAR/Command/Install.php b/pear/PEAR/Command/Install.php index a7b590e1405..ebdb169889f 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;