util.startup: Don't die if there are no config warnings to log (thanks buildbot)

This commit is contained in:
Matthew Wild 2019-03-20 13:44:29 +00:00
parent 6fc745f13a
commit 20f8786949

View file

@ -101,8 +101,10 @@ end
function startup.log_startup_warnings()
dependencies.log_warnings();
for _, warning in ipairs(config_warnings) do
log("warn", "Configuration warning: %s", warning);
if config_warnings then
for _, warning in ipairs(config_warnings) do
log("warn", "Configuration warning: %s", warning);
end
end
end