()
| 17 | } |
| 18 | |
| 19 | func (b *cmdBuilder) ConfigSpec() hcldec.ObjectSpec { |
| 20 | defer func() { |
| 21 | r := recover() |
| 22 | b.checkExit(r, nil) |
| 23 | }() |
| 24 | |
| 25 | return b.builder.ConfigSpec() |
| 26 | } |
| 27 | |
| 28 | func (b *cmdBuilder) Prepare(config ...interface{}) ([]string, []string, error) { |
| 29 | defer func() { |
nothing calls this directly
no test coverage detected