Skip to content

Commit b27fbe3

Browse files
Merge pull request #320 from dangherve/fixNotStandardConfig
[Bug fix] Solve issue when not using standard config file
2 parents 3fefe82 + 8d96f8d commit b27fbe3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

node_helper.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ module.exports = NodeHelper.create(Object.assign({
9898
const defaults = require(__dirname + "/../../js/defaults.js");
9999
let configFilename = path.resolve(__dirname + "/../../config/config.js");
100100
if (typeof(global.configuration_file) !== "undefined") {
101-
configFilename = global.configuration_file;
101+
configFilename = path.resolve(__dirname + "/../../"+global.configuration_file);
102102
}
103103

104104
this.thisConfig = {};

0 commit comments

Comments
 (0)