* more consistent output

This commit is contained in:
Stig Bakken 2002-09-09 21:45:40 +00:00
parent d4c4836f05
commit b5df9f32de

View File

@ -246,10 +246,10 @@ specified at once.
foreach ($params as $pkg) { foreach ($params as $pkg) {
if ($this->installer->uninstall($pkg, $options)) { if ($this->installer->uninstall($pkg, $options)) {
if ($this->config->get('verbose') > 0) { if ($this->config->get('verbose') > 0) {
$this->ui->outputData("uninstall $pkg ok", $command); $this->ui->outputData("uninstall ok: $pkg", $command);
} }
} else { } else {
return $this->raiseError("uninstall $pkg failed"); return $this->raiseError("uninstall failed: $pkg");
} }
} }
return true; return true;