aboutsummaryrefslogtreecommitdiffstats
path: root/util/paths.lua
diff options
context:
space:
mode:
authorJoão Duarte <jvsDuarte08@gmail.com>2019-08-01 09:29:18 -0700
committerJoão Duarte <jvsDuarte08@gmail.com>2019-08-01 09:29:18 -0700
commitcc182d07959a8eb3a55f73a0039c42b256af671e (patch)
tree8dc4ffc9133c59ea5cccc0abfd7d5d38f80fa38e /util/paths.lua
parentf088ddc713ec2b830b89546a4bf1b6a1218631e4 (diff)
downloadprosody-cc182d07959a8eb3a55f73a0039c42b256af671e.tar.gz
prosody-cc182d07959a8eb3a55f73a0039c42b256af671e.zip
util.paths: Refactored a variable, to avoid shadowing
Diffstat (limited to 'util/paths.lua')
-rw-r--r--util/paths.lua8
1 files changed, 4 insertions, 4 deletions
diff --git a/util/paths.lua b/util/paths.lua
index a8d80a4c..de63111e 100644
--- a/util/paths.lua
+++ b/util/paths.lua
@@ -45,15 +45,15 @@ function path_util.complement_lua_path(installer_plugin_path)
-- Checking for duplicates
-- The commands using luarocks need the path to the directory that has the /share and /lib folders.
local lua_version = _VERSION:match(" (.+)$");
- local path_sep = package.config:sub(3,3);
+ local lua_path_sep = package.config:sub(3,3);
local dir_sep = package.config:sub(1,1);
local sub_path = dir_sep.."lua"..dir_sep..lua_version..dir_sep;
if not string.match(package.path, installer_plugin_path) then
- package.path = package.path..path_sep..installer_plugin_path..dir_sep.."share"..sub_path.."?.lua";
- package.path = package.path..path_sep..installer_plugin_path..dir_sep.."share"..sub_path.."?"..dir_sep.."init.lua";
+ package.path = package.path..lua_path_sep..installer_plugin_path..dir_sep.."share"..sub_path.."?.lua";
+ package.path = package.path..lua_path_sep..installer_plugin_path..dir_sep.."share"..sub_path.."?"..dir_sep.."init.lua";
end
if not string.match(package.path, installer_plugin_path) then
- package.cpath = package.cpath..path_sep..installer_plugin_path..dir_sep.."lib"..sub_path.."?.lua";
+ package.cpath = package.cpath..lua_path_sep..installer_plugin_path..dir_sep.."lib"..sub_path.."?.lua";
end
end