Browse Source

Update Fix.

1.0
Andrs Montaez 13 years ago
parent
commit
e42a1f1193
  1. 9
      Mage/Task/Update.php

9
Mage/Task/Update.php

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

Loading…
Cancel
Save