diff options
author | Matthew Wild <mwild1@gmail.com> | 2015-05-18 19:07:31 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2015-05-18 19:07:31 +0100 |
commit | 7a577b72e6b8616aff1e2ea66460fff5948c5804 (patch) | |
tree | 7eb54d4ac2541d9362536bc37a23d828173ff77d /core | |
parent | 8a5ce002742b85433b938203473b63a06760ea0e (diff) | |
download | prosody-7a577b72e6b8616aff1e2ea66460fff5948c5804.tar.gz prosody-7a577b72e6b8616aff1e2ea66460fff5948c5804.zip |
configmanager: Refactor function to avoid re-declaring local variable [luacheck]
Diffstat (limited to 'core')
-rw-r--r-- | core/configmanager.lua | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/core/configmanager.lua b/core/configmanager.lua index a85f950c..5ee131ad 100644 --- a/core/configmanager.lua +++ b/core/configmanager.lua @@ -183,6 +183,7 @@ do env.component = env.Component; function env.Include(file) + -- Check whether this is a wildcard Include if file:match("[*?]") then local lfs = deps.softreq "lfs"; if not lfs then @@ -202,16 +203,17 @@ do env.Include(path..path_sep..f); end end - else - local file = resolve_relative_path(config_file:gsub("[^"..path_sep.."]+$", ""), file); - local f, err = io.open(file); - if f then - local ret, err = parsers.lua.load(f:read("*a"), file, config); - if not ret then error(err:gsub("%[string.-%]", file), 0); end - end - if not f then error("Error loading included "..file..": "..err, 0); end - return f, err; + return; + end + -- Not a wildcard, so resolve (potentially) relative path and run through config parser + file = resolve_relative_path(config_file:gsub("[^"..path_sep.."]+$", ""), file); + local f, err = io.open(file); + if f then + local ret, err = parsers.lua.load(f:read("*a"), file, config_table); + if not ret then error(err:gsub("%[string.-%]", file), 0); end end + if not f then error("Error loading included "..file..": "..err, 0); end + return f, err; end env.include = env.Include; |