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.
19 lines
483 B
19 lines
483 B
#!/usr/bin/env php |
|
<?php |
|
date_default_timezone_set('UTC'); |
|
|
|
if (file_exists(__DIR__ . '/../../../autoload.php')) { |
|
require __DIR__ . '/../../../autoload.php'; |
|
} elseif (file_exists(__DIR__ . '/../vendor/autoload.php')) { |
|
require __DIR__ . '/../vendor/autoload.php'; |
|
} |
|
|
|
use Mage\MageApplication; |
|
|
|
try { |
|
$mage = new MageApplication('.mage.yml'); |
|
$mage->run(); |
|
} catch (Exception $exception) { |
|
printf('Error: %s' . PHP_EOL, $exception->getMessage()); |
|
exit(9); |
|
}
|
|
|