1
0
mirror of https://github.com/hauke68/Magallanes.git synced 2025-08-26 05:10:17 +02:00
Magallanes/Mage/Command/BuiltIn/Update.php
Andrés Montañez 05b102b273 Major overhauling and refactoring of Magallanes Command and Tasks modulairty and workflow.
ADVICE: there is no Backwards Compatibility with custom tasks, those
using the _config instance will be broken or those using the
getEnvironmentName().
2012-09-21 00:22:22 -03:00

23 lines
555 B
PHP

<?php
class Mage_Task_Update
{
private $_config = null;
public function run(Mage_Config $config)
{
$this->_config = $config;
$task = Mage_Task_Factory::get('scm/update', $config);
$task->init();
Mage_Console::output('Updating application via ' . $task->getName() . ' ... ', 1, 0);
$result = $task->run();
if ($result == true) {
Mage_Console::output('OK' . PHP_EOL, 0);
} else {
Mage_Console::output('FAIL' . PHP_EOL, 0);
}
}
}