mirror of
https://github.com/hauke68/Magallanes.git
synced 2025-08-25 21:00:18 +02:00
Update Fix.
This commit is contained in:
parent
e8e436f52e
commit
e42a1f1193
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user