mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
prosodyctl shell: Fix invocation with 3+ command arguments
The code correctly inserted the ',' when there was already a "%q" in the format string, but then the next argument would fail to match because it inserted ", %q" instead of "%q". The code now matches both, ensuring the generated code will not produce a syntax error with multiple arguments.
This commit is contained in:
parent
cbd3982308
commit
272e700f50
1 changed files with 1 additions and 1 deletions
|
@ -83,7 +83,7 @@ local function start(arg) --luacheck: ignore 212/arg
|
|||
for i = 3, #arg do
|
||||
if arg[i]:sub(1, 1) == ":" then
|
||||
table.insert(fmt, i, ")%s(");
|
||||
elseif i > 3 and fmt[i - 1] == "%q" then
|
||||
elseif i > 3 and fmt[i - 1]:match("%%q$") then
|
||||
table.insert(fmt, i, ", %q");
|
||||
else
|
||||
table.insert(fmt, i, "%q");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue