Fix --repair failure on multiple-output derivations

If repair found a corrupted/missing path that depended on a
multiple-output derivation, and some of the outputs of the latter were
not present, it failed with a message like

  error: path ‘/nix/store/cnfn9d5fjys1y93cz9shld2xwaibd7nn-bash-4.3-p42-doc’ is not valid
This commit is contained in:
Eelco Dolstra 2016-01-06 21:49:32 +01:00
parent d2c0958e1e
commit caaaff3954

View file

@ -1123,8 +1123,10 @@ void DerivationGoal::repairClosure()
/* Get the output closure. */
PathSet outputClosure;
for (auto & i : drv->outputs)
for (auto & i : drv->outputs) {
if (!wantOutput(i.first, wantedOutputs)) continue;
computeFSClosure(worker.store, i.second.path, outputClosure);
}
/* Filter out our own outputs (which we have already checked). */
for (auto & i : drv->outputs)