aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2025-02-06 14:46:36 +0000
committerMatthew Wild <mwild1@gmail.com>2025-02-06 14:46:36 +0000
commit24d50902bd3ee7b5d75eb158ac5b3696df2b88c9 (patch)
tree4f5d50d63063b2f59343766c3712e8c253cce10a
parent3e23058a2d6453edd47838b6e9c24b4816ecc80c (diff)
downloadprosody-24d50902bd3ee7b5d75eb158ac5b3696df2b88c9.tar.gz
prosody-24d50902bd3ee7b5d75eb158ac5b3696df2b88c9.zip
prosodyctl: Fix luacheck warning
-rwxr-xr-xprosodyctl2
1 files changed, 1 insertions, 1 deletions
diff --git a/prosodyctl b/prosodyctl
index 9437dae1..f3c6d784 100755
--- a/prosodyctl
+++ b/prosodyctl
@@ -316,7 +316,7 @@ function commands.stop(arg)
if ok then
local i=1;
while true do
- local ok, running = prosodyctl.isrunning();
+ local ok, running = prosodyctl.isrunning(); --luacheck: ignore 421
if ok and not running then
break;
elseif i == 5 then