Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordiosmosis <benakamoorthi@fastmail.fm>2013-12-10 03:34:23 +0400
committerdiosmosis <benakamoorthi@fastmail.fm>2013-12-10 03:35:48 +0400
commit0dd427f341d0fd699d1fac52d4bc83d0e8311bf1 (patch)
tree100369b469a5a28deb6d3c57ac6aa0e9f6a6acba /tests/travis
parent346ef97ef4a00cc41fe0873a9f0ded2bea046714 (diff)
Attempt to get build running again.
Diffstat (limited to 'tests/travis')
-rwxr-xr-xtests/travis/setup_webserver.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/travis/setup_webserver.sh b/tests/travis/setup_webserver.sh
index 2d3264bc68..3ef38e497c 100755
--- a/tests/travis/setup_webserver.sh
+++ b/tests/travis/setup_webserver.sh
@@ -19,8 +19,10 @@ if [ -d "$TRAVIS_BUILD_DIR/../piwik/tmp/" ]; then
PHP_FPM_LOG="$TRAVIS_BUILD_DIR/../piwik/tmp/php-fpm.log"
elif [ -d "$TRAVIS_BUILD_DIR/piwik/tmp/" ]; then
PHP_FPM_LOG="$TRAVIS_BUILD_DIR/piwik/tmp/php-fpm.log"
-else
+elif [ -d "$TRAVIS_BUILD_DIR" ]; then
PHP_FPM_LOG="$TRAVIS_BUILD_DIR/php-fpm.log"
+else
+ PHP_FPM_LOG = "$HOME/php-fpm.log"
fi
USER=$(whoami)