2011-11-22 09:16:06 -02:00
|
|
|
<?php
|
2011-11-27 11:05:06 -02:00
|
|
|
date_default_timezone_set('UTC');
|
2011-11-22 09:16:06 -02:00
|
|
|
|
|
|
|
|
$baseDir = dirname(dirname(__FILE__));
|
|
|
|
|
|
2012-10-24 20:41:03 -02:00
|
|
|
define('MAGALLANES_VERSION', '0.9.12');
|
2012-01-04 00:06:03 -02:00
|
|
|
|
2012-09-21 00:23:07 -03:00
|
|
|
// Preload
|
2012-02-14 20:46:34 -02:00
|
|
|
require_once $baseDir . '/Mage/spyc.php';
|
2011-11-23 01:17:06 -02:00
|
|
|
require_once $baseDir . '/Mage/Autoload.php';
|
|
|
|
|
spl_autoload_register(array('Mage_Autoload', 'autoload'));
|
2011-11-22 09:16:06 -02:00
|
|
|
|
2012-09-21 00:23:07 -03:00
|
|
|
// Clean arguments
|
|
|
|
|
array_shift($argv);
|
2011-11-22 09:16:06 -02:00
|
|
|
|
2012-09-21 00:23:07 -03:00
|
|
|
// Run Magallanes
|
|
|
|
|
$console = new Mage_Console;
|
|
|
|
|
$console->run($argv);
|