()
| 160 | } |
| 161 | |
| 162 | func (gc *GenericCommand) Background() { |
| 163 | gc.async = true |
| 164 | |
| 165 | _ = gc.cmd.Run(context.WithValue(context.Background(), com.LoggerKey, gc.t)) |
| 166 | } |
| 167 | |
| 168 | func (gc *GenericCommand) Signal(sig os.Signal) error { |
| 169 | //nolint:wrapcheck |
nothing calls this directly
no test coverage detected