Method
executeCommand
(ctx executor.ExecutionContext, writer output.OutputWriter, logger log.Logger)
Source from the content-addressed store, hash-verified
| 262 | } |
| 263 | |
| 264 | func (b CommandBuilder) executeCommand(ctx executor.ExecutionContext, writer output.OutputWriter, logger log.Logger) error { |
| 265 | if ctx.Plugin != nil { |
| 266 | return b.PluginExecutor.Call(ctx, writer, logger) |
| 267 | } |
| 268 | return b.Executor.Call(ctx, writer, logger) |
| 269 | } |
| 270 | |
| 271 | func (b CommandBuilder) operationId() string { |
| 272 | bytes := make([]byte, 16) |
Tested by
no test coverage detected