GenericCommand is a concrete Command implementation.
| 98 | |
| 99 | // GenericCommand is a concrete Command implementation. |
| 100 | type GenericCommand struct { |
| 101 | Config Config |
| 102 | TempDir string |
| 103 | Env map[string]string |
| 104 | |
| 105 | t tig.T |
| 106 | |
| 107 | cmd *com.Command |
| 108 | async bool |
| 109 | |
| 110 | rawStdErr string |
| 111 | } |
| 112 | |
| 113 | func (gc *GenericCommand) WithBinary(binary string) { |
| 114 | gc.cmd.Binary = binary |
nothing calls this directly
no outgoing calls
no test coverage detected