79066 lines
2.2 MiB
Executable File
79066 lines
2.2 MiB
Executable File
#!/usr/bin/env php
|
||
<?php
|
||
Phar::mapPhar();
|
||
|
||
|
||
/**
|
||
* if we're running from phar load the phar autoload,
|
||
* else let the script 'robo' search for the autoloader
|
||
*/
|
||
if (strpos(basename(__FILE__), 'phar')) {
|
||
require_once 'phar://robo.phar/vendor/autoload.php';
|
||
} else {
|
||
if (file_exists(__DIR__.'/vendor/autoload.php')) {
|
||
require_once __DIR__.'/vendor/autoload.php';
|
||
} elseif (file_exists(__DIR__.'/../../autoload.php')) {
|
||
require_once __DIR__ . '/../../autoload.php';
|
||
} else {
|
||
require_once 'phar://robo.phar/vendor/autoload.php';
|
||
}
|
||
}
|
||
$runner = new \Robo\Runner();
|
||
$statusCode = $runner->execute($_SERVER['argv']);
|
||
exit($statusCode);
|
||
|
||
__HALT_COMPILER(); ?>
|
||
¶º |