From 8920730bd9d6f586cdfdd695acc9639cd661ea26 Mon Sep 17 00:00:00 2001 From: Aaron Couch Date: Fri, 4 Nov 2016 15:25:03 -0400 Subject: [PATCH] Update config.php --- .ahoy/site/.scripts/config.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.ahoy/site/.scripts/config.php b/.ahoy/site/.scripts/config.php index a278130ee..581d51df3 100644 --- a/.ahoy/site/.scripts/config.php +++ b/.ahoy/site/.scripts/config.php @@ -18,7 +18,7 @@ try { // Parse yaml. $yaml = new Parser(); - $config = $yaml->parse(file_get_contents(__DIR__ . '/../../../../config/config.yml')); + $config = $yaml->parse(file_get_contents(__DIR__ . '/../../../config/config.yml')); // Render yaml using twig template. $context = array( @@ -30,7 +30,7 @@ ); // Write the php file. - $file = fopen(__DIR__ . '/../../../../config/config.php', 'w'); + $file = fopen(__DIR__ . '/../../../config/config.php', 'w'); fwrite($file, $output); } catch (Exception $e) { echo "An error happened trying to transpose the config.yml file:\n{$e->getMessage()}\n";