use temp file instead of footer to allow arbitrary chunking of streams and arbitrary interleaving with output from background processes (#267)

This commit is contained in:
Olcan
2025-05-06 10:44:40 -07:00
committed by GitHub
parent c5182d5ca4
commit e26c436d5c
2 changed files with 41 additions and 21 deletions

View File

@@ -7,8 +7,8 @@ The following information is returned:
Command: Executed command.
Directory: Directory (relative to project root) where command was executed, or `(root)`.
Stdout: Output on stdout stream. Can be `(empty)` or partial on error.
Stderr: Output on stderr stream. Can be `(empty)` or partial on error.
Stdout: Output on stdout stream. Can be `(empty)` or partial on error and for any unwaited background processes.
Stderr: Output on stderr stream. Can be `(empty)` or partial on error and for any unwaited background processes.
Error: Error or `(none)` if no error was reported for the subprocess.
Exit Code: Exit code or `(none)` if terminated by signal.
Signal: Signal number or `(none)` if no signal was received.