1
0
mirror of https://github.com/hauke68/Magallanes.git synced 2025-08-25 21:00:18 +02:00

Update Fix.

This commit is contained in:
Andrs Montaez 2012-02-15 18:52:35 -02:00
parent e8e436f52e
commit e42a1f1193

View File

@ -7,17 +7,16 @@ class Mage_Task_Update
{
$this->_config = $config;
$taskConfig = $config->getConfig();
$task = Mage_Task_Factory::get('scm/update', $taskConfig);
$task = Mage_Task_Factory::get('scm/update', $config);
$task->init();
Mage_Console::output( PHP_TAB . 'Updating application via ' . $task->getName() . ' ... ');
Mage_Console::output('Updating application via ' . $task->getName() . ' ... ', 1, 0);
$result = $task->run();
if ($result == true) {
Mage_Console::output(PHP_TAB . 'OK' . PHP_EOL);
Mage_Console::output('OK' . PHP_EOL, 0);
} else {
Mage_Console::output(PHP_TAB . 'FAIL' . PHP_EOL);
Mage_Console::output( 'FAIL' . PHP_EOL, 0);
}
}