TaskfileNotFoundError is returned when no appropriate Taskfile is found when searching the filesystem.
| 12 | // TaskfileNotFoundError is returned when no appropriate Taskfile is found when |
| 13 | // searching the filesystem. |
| 14 | type TaskfileNotFoundError struct { |
| 15 | URI string |
| 16 | Walk bool |
| 17 | AskInit bool |
| 18 | OwnerChange bool |
| 19 | } |
| 20 | |
| 21 | func (err TaskfileNotFoundError) Error() string { |
| 22 | var walkText string |
nothing calls this directly
no outgoing calls
no test coverage detected