1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-11-21 17:59:36 +01:00

Prefer RepairFlag over bool when applicable

This commit is contained in:
Guillaume Maudoux 2022-01-11 13:34:57 +01:00
parent e9a4abdb5d
commit 9f9f39a24b
3 changed files with 6 additions and 6 deletions

View file

@ -2460,7 +2460,7 @@ void LocalDerivationGoal::registerOutputs()
}
if (curRound == nrRounds) {
localStore.optimisePath(actualPath, false); // FIXME: combine with scanForReferences()
localStore.optimisePath(actualPath, NoRepair); // FIXME: combine with scanForReferences()
worker.markContentsGood(newInfo.path);
}