Skip to content
Snippets Groups Projects
Unverified Commit d8306148 authored by Eelco Dolstra's avatar Eelco Dolstra
Browse files

Suppress "copying 0 paths" message

parent b24b8ef7
No related branches found
No related tags found
No related merge requests found
......@@ -619,6 +619,8 @@ void copyPaths(ref<Store> srcStore, ref<Store> dstStore, const PathSet & storePa
for (auto & path : storePaths)
if (!valid.count(path)) missing.insert(path);
if (missing.empty()) return;
Activity act(*logger, lvlInfo, actCopyPaths, fmt("copying %d paths", missing.size()));
std::atomic<size_t> nrDone{0};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment