You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix Go stderr capture on Unix: use cmd.Stderr instead of StderrPipe
StderrPipe gets closed by cmd.Wait() before io.Copy can finish reading.
Using cmd.Stderr = &buffer ensures all stderr is captured before Wait returns.
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
0 commit comments