Software /
code /
prosody
Changeset
10204:fbd4a5bc3a01
util.paths: Fixed file termination for package.cpath's extra path
author | João Duarte <jvsDuarte08@gmail.com> |
---|---|
date | Fri, 16 Aug 2019 10:44:10 -0700 |
parents | 10203:3beb37ed7f32 |
children | 10205:ff8de86b75f0 |
files | util/paths.lua |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/util/paths.lua Fri Aug 16 09:26:36 2019 -0700 +++ b/util/paths.lua Fri Aug 16 10:44:10 2019 -0700 @@ -53,7 +53,7 @@ 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..lua_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.."?.so"; end end