diff options
Diffstat (limited to 'src/nix')
-rw-r--r-- | src/nix/copy.cc | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/nix/copy.cc b/src/nix/copy.cc index be51fee62712..de306cbf91d9 100644 --- a/src/nix/copy.cc +++ b/src/nix/copy.cc @@ -65,11 +65,7 @@ struct CmdCopy : StorePathsCommand if (!dstStore->isValidPath(storePath)) { Activity act(*logger, lvlInfo, format("copying ‘%s’...") % storePath); - StringSink sink; - srcStore->exportPaths({storePath}, false, sink); - - StringSource source(*sink.s); - dstStore->importPaths(false, source, 0); + copyStorePath(srcStore, dstStore, storePath); logger->incProgress(copiedLabel); } else |