From 3815668a6d067b403c45e63c491bd655583ba920 Mon Sep 17 00:00:00 2001 From: Ryan McElroy Date: Sat, 30 Apr 2011 13:48:21 -0700 Subject: [PATCH] [phabricator] Allow missing dependency checks to run Test Plan: Run upgrade-schema.php, see error instead of silent failure. Task: T123 Reviewed By: epriestley Reviewers: epriestley, jungejason CC: aran, rm, epriestley Differential Revision: 199 --- scripts/__init_script__.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/__init_script__.php b/scripts/__init_script__.php index 7ebd0c2853..b85e9056b5 100644 --- a/scripts/__init_script__.php +++ b/scripts/__init_script__.php @@ -18,7 +18,7 @@ $include_path = ini_get('include_path'); ini_set('include_path', $include_path.':'.dirname(__FILE__).'/../../'); -@require_once 'libphutil/src/__phutil_library_init__.php'; +@include_once 'libphutil/src/__phutil_library_init__.php'; if (!@constant('__LIBPHUTIL__')) { echo "ERROR: Unable to load libphutil. Update your PHP 'include_path' to ". "include the parent directory of libphutil/.\n";