ejabberd2prosody.lua: Don't make assumptions about file name.

This commit is contained in:
Kim Alvefur 2013-01-25 00:36:17 +01:00
parent f766f157e7
commit f092adcb3c

View file

@ -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";