mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
prosodyctl: Fix extraction of interpreter from arg when additional arguments (fixes #1386)
Interpreter goes into the lowest negative index. See http://www.lua.org/manual/5.2/manual.html#7
This commit is contained in:
parent
236825ba8c
commit
de37e6cb58
1 changed files with 9 additions and 1 deletions
10
prosodyctl
10
prosodyctl
|
@ -222,7 +222,15 @@ function commands.start(arg)
|
|||
end
|
||||
|
||||
--luacheck: ignore 411/ret
|
||||
local ok, ret = prosodyctl.start(prosody.paths.source, arg[-1]);
|
||||
local lua;
|
||||
do
|
||||
local i = 0;
|
||||
repeat
|
||||
i = i - 1;
|
||||
until arg[i-1] == nil
|
||||
lua = arg[i];
|
||||
end
|
||||
local ok, ret = prosodyctl.start(prosody.paths.source, lua);
|
||||
if ok then
|
||||
local daemonize = configmanager.get("*", "daemonize");
|
||||
if daemonize == nil then
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue