mirror of
https://we.phorge.it/source/arcanist.git
synced 2024-11-08 16:02:39 +01:00
15 lines
279 B
Text
15 lines
279 B
Text
|
#!/usr/bin/env php
|
||
|
<?php
|
||
|
|
||
|
if (function_exists('pcntl_async_signals')) {
|
||
|
pcntl_async_signals(true);
|
||
|
} else {
|
||
|
declare(ticks = 1);
|
||
|
}
|
||
|
|
||
|
require_once dirname(dirname(__FILE__)).'/scripts/init/init-arcanist.php';
|
||
|
|
||
|
$runtime = new ArcanistRuntime();
|
||
|
return $runtime->execute($argv);
|
||
|
|