diff --git a/src/libstore/build.cc b/src/libstore/build.cc index 81c79435e..a6f8dfaba 100644 --- a/src/libstore/build.cc +++ b/src/libstore/build.cc @@ -3198,7 +3198,8 @@ void SubstitutionGoal::tryToRun() /* Wake up the worker loop when we're done. */ Finally updateStats([this]() { outPipe.writeSide.close(); }); - copyStorePath(ref(sub), ref(worker.store.shared_from_this()), storePath); + copyStorePath(ref(sub), ref(worker.store.shared_from_this()), + storePath, repair); promise.set_value(); } catch (...) { diff --git a/src/libstore/store-api.cc b/src/libstore/store-api.cc index 8600def62..f39d6b547 100644 --- a/src/libstore/store-api.cc +++ b/src/libstore/store-api.cc @@ -358,14 +358,14 @@ const Store::Stats & Store::getStats() void copyStorePath(ref srcStore, ref dstStore, - const Path & storePath) + const Path & storePath, bool repair) { auto info = srcStore->queryPathInfo(storePath); StringSink sink; srcStore->narFromPath({storePath}, sink); - dstStore->addToStore(*info, *sink.s); + dstStore->addToStore(*info, *sink.s, repair); } diff --git a/src/libstore/store-api.hh b/src/libstore/store-api.hh index f680e951f..65c4cdc97 100644 --- a/src/libstore/store-api.hh +++ b/src/libstore/store-api.hh @@ -503,7 +503,7 @@ Path computeStorePathForText(const string & name, const string & s, /* Copy a path from one store to another. */ void copyStorePath(ref srcStore, ref dstStore, - const Path & storePath); + const Path & storePath, bool repair = false); /* Remove the temporary roots file for this process. Any temporary