(ctx context.Context, args ...interface{})
| 49 | } |
| 50 | |
| 51 | func (g Git) run(ctx context.Context, args ...interface{}) (string, string, error) { |
| 52 | return g.runWithStdin(ctx, nil, args...) |
| 53 | } |
| 54 | |
| 55 | func (g Git) runWithStdin(ctx context.Context, stdin io.Reader, args ...interface{}) (string, string, error) { |
| 56 | argstrs := make([]string, len(args)) |
no test coverage detected