rmyorston / pdpmake

Public domain POSIX make
https://frippery.org/make
Other
103 stars 10 forks source link

Flush stdout after writing command string to it #34

Closed nmeum closed 7 months ago

nmeum commented 7 months ago

Otherwise, if stdout is fully buffered (e.g. because the output is redirected to a file or pipe) then the command string may still be buffered when the command is executed in which case the command string will be written to stdout after the command has written its output to stdout.

rmyorston commented 7 months ago

Applied, thank you.