diff --git a/webroot/index.php b/webroot/index.php index 7c8153e7b8..993a499ad3 100644 --- a/webroot/index.php +++ b/webroot/index.php @@ -97,7 +97,12 @@ foreach (PhabricatorEnv::getEnvConfig('load-libraries') as $library) { } if (PhabricatorEnv::getEnvConfig('phabricator.setup')) { - PhabricatorSetup::runSetup(); + try { + PhabricatorSetup::runSetup(); + } catch (Exception $ex) { + echo "EXCEPTION!\n"; + echo $ex; + } return; }