From: Michael J. Rubinsky Date: Wed, 23 Dec 2009 22:06:04 +0000 (-0500) Subject: tweak the path for the final attempt at loading Horde_Cli to reflect the X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=a9dd729901872db9129eb618531cca4eb018545b;p=horde.git tweak the path for the final attempt at loading Horde_Cli to reflect the fact that we are now probably running from framework/bin/ --- diff --git a/framework/bin/install_framework b/framework/bin/install_framework index 4ad163156..a641f627c 100755 --- a/framework/bin/install_framework +++ b/framework/bin/install_framework @@ -112,7 +112,7 @@ if (strpos(ini_get('include_path'), $destDir) === false) { // Do CLI checks and environment setup first. if (!@include_once 'Horde/Cli.php') { if (!@include_once $srcDir . '/Cli/lib/Horde/Cli.php') { - if (!@include_once $cwd . DIRECTORY_SEPARATOR . 'framework/Cli/lib/Horde/Cli.php') { + if (!@include_once $cwd . DIRECTORY_SEPARATOR . '../Cli/lib/Horde/Cli.php') { print_usage('Horde_Cli library is not in the include_path or in the src directory.'); } }