magallanes/bin/mage
2018-04-10 16:59:43 +09:00

21 lines
524 B
PHP
Executable file

#!/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 {
$file = sprintf("%s/.mage.yml", getcwd());
$mage = new MageApplication($file);
$mage->run();
} catch (Exception $exception) {
printf('Error: %s' . PHP_EOL, $exception->getMessage());
exit(9);
}