(name string, stdin io.Reader, stdout, stderr io.Writer, arg ...string)
| 82 | } |
| 83 | |
| 84 | func RunWithExitCode(name string, stdin io.Reader, stdout, stderr io.Writer, arg ...string) (int, error) { |
| 85 | ctx := context.Background() |
| 86 | exitCode, err := RunContextWithExitCode(ctx, name, stdin, stdout, stderr, arg...) |
| 87 | return exitCode, err |
| 88 | } |
nothing calls this directly
no test coverage detected
searching dependent graphs…