TaskfileNotTrustedError is returned when the user does not accept the trust prompt when downloading a remote Taskfile.
| 84 | // TaskfileNotTrustedError is returned when the user does not accept the trust |
| 85 | // prompt when downloading a remote Taskfile. |
| 86 | type TaskfileNotTrustedError struct { |
| 87 | URI string |
| 88 | } |
| 89 | |
| 90 | func (err *TaskfileNotTrustedError) Error() string { |
| 91 | return fmt.Sprintf( |
nothing calls this directly
no outgoing calls
no test coverage detected