forked from lix-project/lix
Make 'nix copy --to ssh://...' run in constant memory
This commit is contained in:
parent
47f7e5585b
commit
11898d6a37
|
@ -120,7 +120,7 @@ struct LegacySSHStore : public Store
|
|||
});
|
||||
}
|
||||
|
||||
void addToStore(const ValidPathInfo & info, const ref<std::string> & nar,
|
||||
void addToStore(const ValidPathInfo & info, Source & source,
|
||||
RepairFlag repair, CheckSigsFlag checkSigs,
|
||||
std::shared_ptr<FSAccessor> accessor) override
|
||||
{
|
||||
|
@ -131,7 +131,7 @@ struct LegacySSHStore : public Store
|
|||
conn->to
|
||||
<< cmdImportPaths
|
||||
<< 1;
|
||||
conn->to(*nar);
|
||||
copyNAR(source, conn->to);
|
||||
conn->to
|
||||
<< exportMagic
|
||||
<< info.path
|
||||
|
|
Loading…
Reference in a new issue