aboutsummaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2020-06-28 02:15:25 +0200
committerKim Alvefur <zash@zash.se>2020-06-28 02:15:25 +0200
commitfb6356059181107d3d285088abe05dc20d4e8e8f (patch)
tree113ca4b5e137cab15d7fa7031752bd1ef3e29a3d /util
parent8c73ea0b2286fed2d1a91333c8d92dab247fd568 (diff)
downloadprosody-fb6356059181107d3d285088abe05dc20d4e8e8f.tar.gz
prosody-fb6356059181107d3d285088abe05dc20d4e8e8f.zip
util.dependencies: Quiet luacheck
Diffstat (limited to 'util')
-rw-r--r--util/dependencies.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/util/dependencies.lua b/util/dependencies.lua
index d2f87661..c117bfc2 100644
--- a/util/dependencies.lua
+++ b/util/dependencies.lua
@@ -98,8 +98,8 @@ local function check_dependencies()
}, "WebSocket support will not be available", err);
end
- local unbound, err = softreq"lunbound";
- if not unbound then
+ local unbound, err = softreq"lunbound"; -- luacheck: ignore 211/err
+ if not unbound then -- luacheck: ignore 542
--[[ TODO Re-enable once packages are available
missingdep("lua-unbound", {
{ "luarocks", "luarocks install luaunbound" };