Documentation | waf: Fix singlehtml output (!104)
ita2048 ita2048 (@ita2048)
gitlab at rtems.org
Mon Feb 10 20:10:22 UTC 2025
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.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.rtems.org/pipermail/bugs/attachments/20250210/c6d16f83/attachment.htm>
More information about the bugs
mailing list