mirror of https://github.com/hauke68/Magallanes
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
555 B
23 lines
555 B
13 years ago
|
<?php
|
||
|
class Mage_Task_Update
|
||
|
{
|
||
|
private $_config = null;
|
||
|
|
||
|
public function run(Mage_Config $config)
|
||
|
{
|
||
|
$this->_config = $config;
|
||
|
|
||
13 years ago
|
$task = Mage_Task_Factory::get('scm/update', $config);
|
||
13 years ago
|
$task->init();
|
||
|
|
||
13 years ago
|
Mage_Console::output('Updating application via ' . $task->getName() . ' ... ', 1, 0);
|
||
13 years ago
|
$result = $task->run();
|
||
|
|
||
|
if ($result == true) {
|
||
13 years ago
|
Mage_Console::output('OK' . PHP_EOL, 0);
|
||
13 years ago
|
} else {
|
||
13 years ago
|
Mage_Console::output('FAIL' . PHP_EOL, 0);
|
||
13 years ago
|
}
|
||
|
}
|
||
|
|
||
|
}
|