forked from lix-project/lix
ValidPathInfo::isContentAddressed(): Ensure there are no references
This commit is contained in:
parent
e01c01f72c
commit
9d1220a01d
|
@ -757,7 +757,8 @@ bool ValidPathInfo::isContentAddressed(const Store & store) const
|
||||||
else if (hasPrefix(ca, "fixed:")) {
|
else if (hasPrefix(ca, "fixed:")) {
|
||||||
bool recursive = ca.compare(6, 2, "r:") == 0;
|
bool recursive = ca.compare(6, 2, "r:") == 0;
|
||||||
Hash hash(std::string(ca, recursive ? 8 : 6));
|
Hash hash(std::string(ca, recursive ? 8 : 6));
|
||||||
if (store.makeFixedOutputPath(recursive, hash, storePathToName(path)) == path)
|
if (references.empty() &&
|
||||||
|
store.makeFixedOutputPath(recursive, hash, storePathToName(path)) == path)
|
||||||
return true;
|
return true;
|
||||||
else
|
else
|
||||||
warn();
|
warn();
|
||||||
|
|
Loading…
Reference in a new issue