1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

tools: fix sporadic CI failures on the doom-regressions job due to v gret

This commit is contained in:
Delyan Angelov 2022-09-25 11:26:45 +03:00
parent 50fb5de926
commit 6637db2d6d
No known key found for this signature in database
GPG Key ID: 66886C0F12D595ED

View File

@ -359,6 +359,7 @@ fn take_screenshots(opt Options, app AppConfig) ![]string {
opt.verbose_eprintln('Running $app.abs_path $flags')
mut p_app := os.new_process(app.abs_path)
p_app.set_args(flags)
p_app.set_redirect_stdio()
p_app.run()
if !p_app.is_alive() {