1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2024-09-19 23:03:53 -04:00

Fix assertion failure in storePathToHash()

Fixes https://github.com/NixOS/nix/issues/2015.
This commit is contained in:
Eelco Dolstra 2018-03-27 16:12:00 +02:00
parent 6185d25e52
commit e606cd412f
No known key found for this signature in database
GPG key ID: 8170B4726D7198DE

View file

@ -253,6 +253,8 @@ std::string Store::getUri()
bool Store::isValidPath(const Path & storePath)
{
assertStorePath(storePath);
auto hashPart = storePathToHash(storePath);
{