summaryrefslogtreecommitdiff
path: root/pear
diff options
context:
space:
mode:
authorStig Bakken <ssb@php.net>2002-09-09 21:45:40 +0000
committerStig Bakken <ssb@php.net>2002-09-09 21:45:40 +0000
commitb5df9f32def7c23683cd28d4d09b302f40ebdeca (patch)
tree5669abbd4ef13421efdb4715027762db6b4db980 /pear
parentd4c4836f056f5f914aba4222cb022a2c48187280 (diff)
downloadphp-git-b5df9f32def7c23683cd28d4d09b302f40ebdeca.tar.gz
* more consistent output
Diffstat (limited to 'pear')
-rw-r--r--pear/PEAR/Command/Install.php4
1 files changed, 2 insertions, 2 deletions
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;