2011-11-23 12:38:52 +01:00
|
|
|
<?php
|
2012-09-21 05:23:07 +02:00
|
|
|
class Mage_Command_BuiltIn_Update
|
|
|
|
extends Mage_Command_CommandAbstract
|
2011-11-23 12:38:52 +01:00
|
|
|
{
|
2012-09-21 05:23:07 +02:00
|
|
|
public function run()
|
2011-11-23 12:38:52 +01:00
|
|
|
{
|
2012-09-21 05:23:07 +02:00
|
|
|
$task = Mage_Task_Factory::get('scm/update', $this->getConfig());
|
2011-11-23 12:38:52 +01:00
|
|
|
$task->init();
|
2012-09-21 05:23:07 +02:00
|
|
|
|
2012-02-15 21:52:35 +01:00
|
|
|
Mage_Console::output('Updating application via ' . $task->getName() . ' ... ', 1, 0);
|
2011-11-23 12:38:52 +01:00
|
|
|
$result = $task->run();
|
2012-09-21 05:23:07 +02:00
|
|
|
|
2011-11-23 12:38:52 +01:00
|
|
|
if ($result == true) {
|
2012-09-21 05:23:07 +02:00
|
|
|
Mage_Console::output('<green>OK</green>' . PHP_EOL, 0);
|
2011-11-23 12:38:52 +01:00
|
|
|
} else {
|
2012-09-21 05:23:07 +02:00
|
|
|
Mage_Console::output('<red>FAIL</red>' . PHP_EOL, 0);
|
2011-11-23 12:38:52 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|