Software /
code /
prosody
Changeset
11298:79466cc86041
util.prosodyctl: Rename unused variable to '_' [luacheck]
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Thu, 21 Jan 2021 19:17:31 +0100 |
parents | 11297:2e9d4c517919 |
children | 11299:abe8cd8fad14 |
files | util/prosodyctl.lua |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/util/prosodyctl.lua Thu Jan 21 19:16:24 2021 +0100 +++ b/util/prosodyctl.lua Thu Jan 21 19:17:31 2021 +0100 @@ -221,7 +221,7 @@ local function call_luarocks(operation, mod, server) local dir = prosody.paths.installer; - local ok, where, code = os.execute(render_cli("luarocks {op} --tree={dir} {server&--server={server}} {mod?}", { + local ok, _, code = os.execute(render_cli("luarocks {op} --tree={dir} {server&--server={server}} {mod?}", { dir = dir; op = operation; mod = mod; server = server; })); if type(ok) == "number" then ok, code = ok == 0, ok; end