TaskfileCycleError is returned when we detect that a Taskfile includes a set of Taskfiles that include each other in a cycle.
| 181 | // TaskfileCycleError is returned when we detect that a Taskfile includes a |
| 182 | // set of Taskfiles that include each other in a cycle. |
| 183 | type TaskfileCycleError struct { |
| 184 | Source string |
| 185 | Destination string |
| 186 | } |
| 187 | |
| 188 | func (err TaskfileCycleError) Error() string { |
| 189 | return fmt.Sprintf("task: include cycle detected between %s <--> %s", |
nothing calls this directly
no outgoing calls
no test coverage detected