-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Do some validation of packages in the system cache #5939
Comments
What about computing an MD5 over the directory, and recording that as part of the pub upload process? |
Right. That's one of the things we discussed. The challenge I see with that is that then validating that MD5 hash means walking the entire directory, which might be too costly to do every time you pub install. |
Set owner to @munificent. |
Added Accepted label. |
Added Started label. |
pub install will now re-install a previously cached package if it sees that the cached directory is missing a pubspec or has an empty lib directory. Added Fixed label. |
This issue has been moved to dart-lang/pub#206. |
Previously, there was an issue where pub could end up with an empty directory in the system cache. That would lead it to think the package had been successfully cached but was empty, which caused those "doesn't have a pubspec.yaml" errors people were/are seeing.
The root cause of that bug has been fixed, but:
Given that, it might be good to do some validation of packages in the cache at pub install/update time. If the package isn't valid, we'll blow it away and install it again. Trivial validation would be if the directory is empty, it's bad, but we could possibly do more than that.
I still think prevention is better than a cure, and we should be in better shape for that now that pub downloads packages to a temp directory, but this is worth keeping in mind if we see other issues here.
The text was updated successfully, but these errors were encountered: