diff options
author | Kim Alvefur <zash@zash.se> | 2013-01-25 00:36:17 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2013-01-25 00:36:17 +0100 |
commit | d5ff394e677bc2c7df5f3e8273ae8515fde0008d (patch) | |
tree | 08c7b5be191ad31bce555dabfa702686788edb2e /tools | |
parent | 027087d76850f79547adcda11d7c4b2929aa849b (diff) | |
download | prosody-d5ff394e677bc2c7df5f3e8273ae8515fde0008d.tar.gz prosody-d5ff394e677bc2c7df5f3e8273ae8515fde0008d.zip |
ejabberd2prosody.lua: Don't make assumptions about file name.
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/ejabberd2prosody.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/ejabberd2prosody.lua b/tools/ejabberd2prosody.lua index ee9e7821..c11e41d9 100755 --- a/tools/ejabberd2prosody.lua +++ b/tools/ejabberd2prosody.lua @@ -11,8 +11,8 @@ package.path = package.path ..";../?.lua"; -if arg[0]:match("^./") then - package.path = package.path .. ";"..arg[0]:gsub("/ejabberd2prosody.lua$", "/?.lua"); +if arg[0]:match("[/\\]") then + package.path = package.path .. ";"..arg[0]:gsub("[^/\\]*$", "?.lua"); end local erlparse = require "erlparse"; |