From ad0fd5d00afd510479fdf31f252bac9224dc161e Mon Sep 17 00:00:00 2001 From: Stephen Ball Date: Mon, 5 Oct 2015 10:17:04 +0100 Subject: [PATCH] Update Build.php Changed the order the files are loaded in --- PHPCI/Model/Build.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/PHPCI/Model/Build.php b/PHPCI/Model/Build.php index 3e3ab3e2..3243f9fa 100644 --- a/PHPCI/Model/Build.php +++ b/PHPCI/Model/Build.php @@ -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: