Comparison

util/dependencies.lua @ 10975:f997e3e8bc23

util.dependencies: Quiet luacheck
author Kim Alvefur <zash@zash.se>
date Sun, 28 Jun 2020 02:15:25 +0200
parent 10974:3b9d533da8fe
child 11141:a5acd6354845
comparison
equal deleted inserted replaced
10974:3b9d533da8fe 10975:f997e3e8bc23
96 { "luarocks", "luarocks install luabitop" }; 96 { "luarocks", "luarocks install luabitop" };
97 { "Source", "http://bitop.luajit.org/" }; 97 { "Source", "http://bitop.luajit.org/" };
98 }, "WebSocket support will not be available", err); 98 }, "WebSocket support will not be available", err);
99 end 99 end
100 100
101 local unbound, err = softreq"lunbound"; 101 local unbound, err = softreq"lunbound"; -- luacheck: ignore 211/err
102 if not unbound then 102 if not unbound then -- luacheck: ignore 542
103 --[[ TODO Re-enable once packages are available 103 --[[ TODO Re-enable once packages are available
104 missingdep("lua-unbound", { 104 missingdep("lua-unbound", {
105 { "luarocks", "luarocks install luaunbound" }; 105 { "luarocks", "luarocks install luaunbound" };
106 { "Source", "https://www.zash.se/luaunbound.html" }; 106 { "Source", "https://www.zash.se/luaunbound.html" };
107 }, "Old DNS resolver library will be used", err); 107 }, "Old DNS resolver library will be used", err);