MCPcopy
hub / github.com/go-task/task / TaskfileCycleError

Struct TaskfileCycleError

errors/errors_taskfile.go:183–186  ·  view source on GitHub ↗

TaskfileCycleError is returned when we detect that a Taskfile includes a set of Taskfiles that include each other in a cycle.

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected