Update Build.php

Changed the order the files are loaded in
This commit is contained in:
Stephen Ball 2015-10-05 10:17:04 +01:00
parent 9ee27bad37
commit 647c0eb09c

View file

@ -99,14 +99,14 @@ class Build extends BuildBase
{
$build_config = null;
// Try phpci.yml first:
if (is_file($buildPath . '/phpci.yml')) {
$build_config = file_get_contents($buildPath . '/phpci.yml');
// Try .phpci.yml
if (is_file($buildPath . '/.phpci.yml')) {
$build_config = file_get_contents($buildPath . '/.phpci.yml');
}
// Try .phpci.yml
if (empty($build_config) && is_file($buildPath . '/.phpci.yml')) {
$build_config = file_get_contents($buildPath . '/.phpci.yml');
// Try phpci.yml first:
if (empty($build_config) && is_file($buildPath . '/phpci.yml')) {
$build_config = file_get_contents($buildPath . '/phpci.yml');
}
// Try getting the project build config from the database: