diff options
author | Kim Alvefur <zash@zash.se> | 2014-03-09 22:15:40 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2014-03-09 22:15:40 +0100 |
commit | d2b4655cdc3aa7c061f5562b2ee867cd76733b03 (patch) | |
tree | 0f9eb51b14dc431cfa094ba991508ac084939c4a /util/pluginloader.lua | |
parent | 2581518210994e410d8163d6aeb32b010a8f1cde (diff) | |
download | prosody-d2b4655cdc3aa7c061f5562b2ee867cd76733b03.tar.gz prosody-d2b4655cdc3aa7c061f5562b2ee867cd76733b03.zip |
util.pluginloader: Always use path separator from package.config (thanks Junne)
Diffstat (limited to 'util/pluginloader.lua')
-rw-r--r-- | util/pluginloader.lua | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/util/pluginloader.lua b/util/pluginloader.lua index c10fdf65..112c0d52 100644 --- a/util/pluginloader.lua +++ b/util/pluginloader.lua @@ -39,10 +39,10 @@ function load_resource(plugin, resource) resource = resource or "mod_"..plugin..".lua"; local names = { - "mod_"..plugin.."/"..plugin.."/"..resource; -- mod_hello/hello/mod_hello.lua - "mod_"..plugin.."/"..resource; -- mod_hello/mod_hello.lua - plugin.."/"..resource; -- hello/mod_hello.lua - resource; -- mod_hello.lua + "mod_"..plugin..dir_sep..plugin..dir_sep..resource; -- mod_hello/hello/mod_hello.lua + "mod_"..plugin..dir_sep..resource; -- mod_hello/mod_hello.lua + plugin..dir_sep..resource; -- hello/mod_hello.lua + resource; -- mod_hello.lua }; return load_file(names); |