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
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
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.