Merge branch 'master' of github.com:NixOS/nix
This commit is contained in:
commit
d9864be4b7
|
@ -736,9 +736,18 @@ std::set<RealisedPath> toRealisedPaths(
|
||||||
output.first);
|
output.first);
|
||||||
auto outputId = DrvOutput{outputHashes.at(output.first), output.first};
|
auto outputId = DrvOutput{outputHashes.at(output.first), output.first};
|
||||||
auto realisation = store->queryRealisation(outputId);
|
auto realisation = store->queryRealisation(outputId);
|
||||||
if (!realisation)
|
if (!realisation) {
|
||||||
throw Error("cannot operate on an output of unbuilt content-addresed derivation '%s'", outputId.to_string());
|
// TODO: remove this check once #4725 is fixed
|
||||||
res.insert(RealisedPath{*realisation});
|
// as we’ll have the guaranty that if
|
||||||
|
// `output.second` exists, then the realisation
|
||||||
|
// will be there too
|
||||||
|
if (output.second)
|
||||||
|
res.insert(*output.second);
|
||||||
|
else
|
||||||
|
throw Error("cannot operate on an output of unbuilt content-addresed derivation '%s'", outputId.to_string());
|
||||||
|
} else {
|
||||||
|
res.insert(RealisedPath{*realisation});
|
||||||
|
}
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
// If ca-derivations isn't enabled, behave as if
|
// If ca-derivations isn't enabled, behave as if
|
||||||
|
|
Loading…
Reference in a new issue