ita2048 ita2048 commented on a discussion: 
https://gitlab.rtems.org/rtems/docs/rtems-docs/-/merge_requests/104#note_119605


It seems that the changes capture the command outputs instead of writing them 
directly. Is the inliner command actually running a Podman container that 
discards file descriptors? :thinking: 

Keeping the stderr log file would be a good thing; here is how to capture both:
```python
from waflib.Context import BOTH
inliner_out, inliner_err = task.generator.bld.cmd_and_log(cmd, output=BOTH, 
quiet=BOTH)
so.write(inliner_out)
se.write(inliner_err)
```

-- 
View it on GitLab: 
https://gitlab.rtems.org/rtems/docs/rtems-docs/-/merge_requests/104#note_119605
You're receiving this email because of your account on gitlab.rtems.org.


_______________________________________________
bugs mailing list
bugs@rtems.org
http://lists.rtems.org/mailman/listinfo/bugs

Reply via email to