Skip to content
Snippets Groups Projects
Commit 6e573099 authored by Héctor Molinero Fernández's avatar Héctor Molinero Fernández Committed by Vladimír Čunát
Browse files

Redirect webserv.lua stdout and stderr to /dev/null

Fixes a regression on Meson 0.57.0 that produces a timeout in config.ta_bootstrap test.
parent b46be0d1
Branches
Tags
2 merge requests!1327Update manager branch with the newest changes from master,!1321Redirect webserv.lua stdout and stderr to /dev/null
......@@ -46,7 +46,7 @@ env.KRESD_NO_LISTEN = true
local function start_webserver()
-- srvout = io.popen('luajit webserv.lua')
-- TODO
os.execute('luajit webserv.lua &')
os.execute('luajit webserv.lua >/dev/null 2>&1 &')
-- assert(srvout, 'failed to start webserver')
end
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment