fixup! Make roots a map of store paths to pinning links

This commit is contained in:
Guillaume Maudoux 2019-03-01 01:15:10 +01:00 committed by Guillaume Maudoux
parent ebc86550f9
commit 8574b70342

View file

@ -428,10 +428,10 @@ static void opQuery(Strings opFlags, Strings opArgs)
referrers, true, settings.gcKeepOutputs, settings.gcKeepDerivations);
}
Roots roots = store->findRoots();
for (auto & [path, roots] : roots)
for (auto & [path, links] : roots)
if (referrers.find(path) != referrers.end())
for (auto & root : roots)
cout << format("%1% -> %2%\n") % root % path;
for (auto & link : links)
cout << format("%1%\n") % link;
break;
}