forked from lix-project/hydra
Remove signing parameter (nix#f435f82)
This commit is contained in:
parent
232e6e8556
commit
1c2f6281b9
|
@ -106,7 +106,7 @@ static void copyClosureTo(ref<Store> destStore,
|
||||||
printMsg(lvlDebug, format("sending %1% missing paths") % missing.size());
|
printMsg(lvlDebug, format("sending %1% missing paths") % missing.size());
|
||||||
|
|
||||||
to << cmdImportPaths;
|
to << cmdImportPaths;
|
||||||
destStore->exportPaths(missing, false, to);
|
destStore->exportPaths(missing, to);
|
||||||
to.flush();
|
to.flush();
|
||||||
|
|
||||||
if (readInt(from) != 1)
|
if (readInt(from) != 1)
|
||||||
|
@ -360,7 +360,7 @@ void State::buildRemote(ref<Store> destStore,
|
||||||
|
|
||||||
to << cmdExportPaths << 0 << outputs;
|
to << cmdExportPaths << 0 << outputs;
|
||||||
to.flush();
|
to.flush();
|
||||||
destStore->importPaths(false, from, result.accessor);
|
destStore->importPaths(from, result.accessor);
|
||||||
|
|
||||||
auto now2 = std::chrono::steady_clock::now();
|
auto now2 = std::chrono::steady_clock::now();
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue