From 90ca93c9bcfc40e7c8817f34f11c8eebe7a9aecb Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Wed, 29 Oct 2008 03:00:38 +0000 Subject: - Patch #322843 by Damien Tournoud: fixed --php option. --- scripts/run-tests.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'scripts/run-tests.sh') diff --git a/scripts/run-tests.sh b/scripts/run-tests.sh index 572bd6885..2cb63310a 100755 --- a/scripts/run-tests.sh +++ b/scripts/run-tests.sh @@ -229,14 +229,14 @@ function simpletest_script_init() { $host = 'localhost'; $path = ''; // Determine location of php command automatically, unless a comamnd line argument is supplied. - if (isset($args['php'])) { + if (!empty($args['php'])) { $php = $args['php']; } - elseif (isset($_ENV['_'])) { + elseif (!empty($_ENV['_'])) { // '_' is an environment variable set by the shell. It contains the command that was executed. $php = $_ENV['_']; } - elseif (isset($_ENV['SUDO_COMMAND'])) { + elseif (!empty($_ENV['SUDO_COMMAND'])) { // 'SUDO_COMMAND' is an environment variable set by the sudo program. // Extract only the PHP interpreter, not the rest of the command. list($php, ) = explode(' ', $_ENV['SUDO_COMMAND'], 2); -- cgit v1.2.3