aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2013-01-25 00:36:17 +0100
committerKim Alvefur <zash@zash.se>2013-01-25 00:36:17 +0100
commitd5ff394e677bc2c7df5f3e8273ae8515fde0008d (patch)
tree08c7b5be191ad31bce555dabfa702686788edb2e
parent027087d76850f79547adcda11d7c4b2929aa849b (diff)
downloadprosody-d5ff394e677bc2c7df5f3e8273ae8515fde0008d.tar.gz
prosody-d5ff394e677bc2c7df5f3e8273ae8515fde0008d.zip
ejabberd2prosody.lua: Don't make assumptions about file name.
-rwxr-xr-xtools/ejabberd2prosody.lua4
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";