mirror of
https://we.phorge.it/source/arcanist.git
synced 2024-11-08 16:02:39 +01:00
5451d28752
Summary: See <https://discourse.phabricator-community.org/t/failed-arc-patch-does-not-return-non-zero-exit-code/3584>. Returning an integer from a top-level PHP file doesn't actually affect the process exit code, as much as I might wish it does. Test Plan: Ran `arc patch adflsnadfsln; echo $?`, saw a nonzero exit code after this fix. Differential Revision: https://secure.phabricator.com/D21037
8 lines
139 B
PHP
8 lines
139 B
PHP
<?php
|
|
|
|
require_once dirname(__FILE__).'/init-script.php';
|
|
|
|
$runtime = new ArcanistRuntime();
|
|
$err = $runtime->execute($argv);
|
|
|
|
exit($err);
|