TaskfileNotSecureError is returned when the user attempts to download a remote Taskfile over an insecure connection.
| 101 | // TaskfileNotSecureError is returned when the user attempts to download a |
| 102 | // remote Taskfile over an insecure connection. |
| 103 | type TaskfileNotSecureError struct { |
| 104 | URI string |
| 105 | } |
| 106 | |
| 107 | func (err *TaskfileNotSecureError) Error() string { |
| 108 | return fmt.Sprintf( |
nothing calls this directly
no outgoing calls
no test coverage detected