mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
Merge 0.12->trunk
This commit is contained in:
commit
07ee0f4470
2 changed files with 6 additions and 3 deletions
|
@ -20,7 +20,7 @@ describe("parse", function()
|
|||
local arg = { "--foo"; "bar"; "--baz" };
|
||||
local opts, err = parse(arg);
|
||||
assert.falsy(err);
|
||||
assert.same({ foo = true }, opts);
|
||||
assert.same({ foo = true, "bar", "--baz" }, opts);
|
||||
assert.same({ "bar"; "--baz" }, arg);
|
||||
end);
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@ local function parse(arg, config)
|
|||
local parsed_opts = {};
|
||||
|
||||
if #arg == 0 then
|
||||
return parsed_opts, arg;
|
||||
return parsed_opts;
|
||||
end
|
||||
while true do
|
||||
local raw_param = arg[1];
|
||||
|
@ -47,7 +47,10 @@ local function parse(arg, config)
|
|||
end
|
||||
parsed_opts[param_k] = param_v;
|
||||
end
|
||||
return parsed_opts, arg;
|
||||
for i = 1, #arg do
|
||||
parsed_opts[i] = arg[i];
|
||||
end
|
||||
return parsed_opts;
|
||||
end
|
||||
|
||||
return {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue