()
| 252 | } |
| 253 | |
| 254 | func (e *Executor) setupDefaults() { |
| 255 | if e.Taskfile.Method == "" { |
| 256 | e.Taskfile.Method = "checksum" |
| 257 | } |
| 258 | if e.Taskfile.Run == "" { |
| 259 | e.Taskfile.Run = "always" |
| 260 | } |
| 261 | } |
| 262 | |
| 263 | func (e *Executor) setupConcurrencyState() { |
| 264 | e.executionHashes = make(map[string]context.Context) |