()
| 195 | } |
| 196 | |
| 197 | func (e *Executor) setupOutput() error { |
| 198 | if !e.OutputStyle.IsSet() { |
| 199 | e.OutputStyle = e.Taskfile.Output |
| 200 | } |
| 201 | |
| 202 | var err error |
| 203 | e.Output, err = output.BuildFor(&e.OutputStyle, e.Logger) |
| 204 | return err |
| 205 | } |
| 206 | |
| 207 | func (e *Executor) setupCompiler() error { |
| 208 | if e.UserWorkingDir == "" { |