Merge pull request #656 from roramirez/env-config-file-pl

Code change discussion  Pull Request  #653
This commit is contained in:
Michael Teeuw 2017-01-27 17:27:03 +01:00 committed by GitHub
commit 9bd42ac221

View File

@ -48,10 +48,9 @@ var App = function() {
// For this check proposed to TestSuite // For this check proposed to TestSuite
// https://forum.magicmirror.builders/topic/1456/test-suite-for-magicmirror/8 // https://forum.magicmirror.builders/topic/1456/test-suite-for-magicmirror/8
if (global.configuration_file === undefined ) { var configFilename = path.resolve(global.root_path + "/config/config.js");
var configFilename = path.resolve(global.root_path + "/config/config.js"); if (typeof(global.configuration_file) === "undefined" ) {
} else { configFilename = path.resolve(global.configuration_file);
var configFilename = path.resolve(global.configuration_file);
} }
try { try {