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