-
Notifications
You must be signed in to change notification settings - Fork 525
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
cache name with prerelease truncated #424
Comments
The normalized version do not handle number part of prerelease identifiers. See NuGetV2.fs#L238 and SemVer.fs#L69. |
Will try to reproduce
|
Ah didn't see @mexx already sent a pull request. |
Thanks @mexx! |
This is happening on a couple different projects of mine, both using the same prerelease suffix scheme and both on AppVeyor. Paket is downloading files like
SourceLink.SymbolStore.0.5.0-ci1411131947.nupkg
and caching them asSourceLink.SymbolStore.0.5.0-ci.nupkg
in%localappdata%\nuget\cache
. Without the1411131947
part of the suffix, the same file keeps getting extracted. The workaround is to clear packages and the cache.The text was updated successfully, but these errors were encountered: