1
0
Fork 0
mirror of https://we.phorge.it/source/arcanist.git synced 2024-09-19 16:38:51 +02:00

Don't try to call library functions during arc sanity checking

Summary: These functions won't exist yet. See 7e2df9a5bf (commitcomment-9172274)

Test Plan: Faked a fatal, ran `arc`, got message.

Reviewers: joshuaspence, chad, btrahan

Reviewed By: btrahan

Subscribers: epriestley

Differential Revision: https://secure.phabricator.com/D11254
This commit is contained in:
epriestley 2015-01-06 09:53:11 -08:00
parent 439413ae29
commit 2035330780

View file

@ -510,10 +510,14 @@ function sanity_check_environment() {
}
function die_with_bad_php($message) {
echo phutil_console_format(
"\n%s\n\n%s\n\n",
pht('PHP CONFIGURATION ERRORS'),
$message);
// NOTE: We're bailing because PHP is broken. We can't call any library
// functions because they won't be loaded yet.
echo "\n";
echo 'PHP CONFIGURATION ERRORS';
echo "\n\n";
echo $message;
echo "\n\n";
exit(1);
}