From c8931cde6e58ea632dd6077a598c44649fad9b72 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Tue, 18 Apr 2017 14:01:28 -0400 Subject: [PATCH] gulp fix for env --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 8ea4c20564..75bae456f2 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -216,7 +216,7 @@ function config() { version: project.version, environment: project.env } - }, require('./settings.' + project.env + '.json') || {}) + }, require('./settings' + (project.env !== 'Development' ? ('.' + project.env) : '') + '.json') || {}) })); }