TaskfileInvalidError is returned when the Taskfile contains syntax errors or cannot be parsed for some reason.
| 50 | // TaskfileInvalidError is returned when the Taskfile contains syntax errors or |
| 51 | // cannot be parsed for some reason. |
| 52 | type TaskfileInvalidError struct { |
| 53 | URI string |
| 54 | Err error |
| 55 | } |
| 56 | |
| 57 | func (err TaskfileInvalidError) Error() string { |
| 58 | return fmt.Sprintf("task: Failed to parse %s:\n%v", filepath.ToSlash(err.URI), err.Err) |
nothing calls this directly
no outgoing calls
no test coverage detected